From d26407b0d51a5b3f4aa13fed2cae84e15a667d7e Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Sat, 11 May 2024 14:42:05 +0800 Subject: [PATCH 1/5] fix(mogdb):issue I9MVOT --- .../4-loading-the-driver.md | 44 ++++++++++++++++++- .../4-loading-the-driver.md | 44 ++++++++++++++++++- 2 files changed, 84 insertions(+), 4 deletions(-) diff --git a/product/zh/docs-mogdb/v5.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md b/product/zh/docs-mogdb/v5.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md index cc230090..7cf18429 100644 --- a/product/zh/docs-mogdb/v5.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md +++ b/product/zh/docs-mogdb/v5.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md @@ -11,9 +11,49 @@ date: 2021-04-26 加载驱动有两种方法: -- 在代码中创建连接之前任意位置隐含装载: Class.forName("org.opengauss.Driver"); +- 在代码中创建连接之前任意位置隐含装载: Class.forName("{className}"); -- 在JVM启动时参数传递: java -Djdbc.drivers=org.opengauss.Driver jdbctest +- 在JVM启动时参数传递: java -Djdbc.drivers=className jdbctest > ![img](https://cdn-mogdb.enmotech.com/docs-media/icon/icon-note.gif) **说明:** > 上述jdbctest为测试用例程序的名称。 + +## Maven + +MogDB提供3种兼容驱动,详见 [mogdb-jdbc](https://search.maven.org/search?q=a:mogdb-jdbc) + +### 兼容openGauss驱动类 + +className为`org.opengauss.Driver`,URL为 `jdbc:opengauss://` + +```xml + + io.mogdb + mogdb-jdbc + {version}.og + +``` + +### 兼容postgresql驱动类 + +className为`org.postgresql.Driver`,URL为 `jdbc:postgresql://` + +```xml + + io.mogdb + mogdb-jdbc + {version}.pg + +``` + +### mogdb驱动类 + +className为`io.mogdb.Driver`,URL为 `jdbc:mogdb://` + +```xml + + io.mogdb + mogdb-jdbc + {version}.mg + +``` diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md b/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md index cc230090..7cf18429 100644 --- a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md +++ b/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md @@ -11,9 +11,49 @@ date: 2021-04-26 加载驱动有两种方法: -- 在代码中创建连接之前任意位置隐含装载: Class.forName("org.opengauss.Driver"); +- 在代码中创建连接之前任意位置隐含装载: Class.forName("{className}"); -- 在JVM启动时参数传递: java -Djdbc.drivers=org.opengauss.Driver jdbctest +- 在JVM启动时参数传递: java -Djdbc.drivers=className jdbctest > ![img](https://cdn-mogdb.enmotech.com/docs-media/icon/icon-note.gif) **说明:** > 上述jdbctest为测试用例程序的名称。 + +## Maven + +MogDB提供3种兼容驱动,详见 [mogdb-jdbc](https://search.maven.org/search?q=a:mogdb-jdbc) + +### 兼容openGauss驱动类 + +className为`org.opengauss.Driver`,URL为 `jdbc:opengauss://` + +```xml + + io.mogdb + mogdb-jdbc + {version}.og + +``` + +### 兼容postgresql驱动类 + +className为`org.postgresql.Driver`,URL为 `jdbc:postgresql://` + +```xml + + io.mogdb + mogdb-jdbc + {version}.pg + +``` + +### mogdb驱动类 + +className为`io.mogdb.Driver`,URL为 `jdbc:mogdb://` + +```xml + + io.mogdb + mogdb-jdbc + {version}.mg + +``` -- Gitee From aee796d00b628627c1ddfbfec9e01f6204c1f351 Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Mon, 13 May 2024 12:28:26 +0800 Subject: [PATCH 2/5] =?UTF-8?q?fix(mogdb):recovery=5Fmax=5Fworkers?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/write-ahead-log/log-replay.md | 2 +- .../guc-parameters/write-ahead-log/log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/6-write-ahead-log/3-log-replay.md | 2 +- .../guc-parameters/write-ahead-log/log-replay.md | 2 +- .../guc-parameters/write-ahead-log/log-replay.md | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/product/en/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/en/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index 021ca99e..2ca355be 100644 --- a/product/en/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/en/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/en/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/en/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index 4f222275..acb4c940 100644 --- a/product/en/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/en/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/en/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/en/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index dbf25916..fe081f06 100644 --- a/product/en/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/en/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/en/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/en/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index 29f8463a..cc67bd4b 100644 --- a/product/en/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/en/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/en/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/en/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index 29f8463a..cc67bd4b 100644 --- a/product/en/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/en/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/en/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md b/product/en/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md index 8d493afe..a12acaa6 100644 --- a/product/en/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md +++ b/product/en/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md @@ -77,7 +77,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md b/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md index 8d493afe..a12acaa6 100644 --- a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md +++ b/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md @@ -77,7 +77,7 @@ This parameter is a POSTMASTER parameter. Set it based on instructions provided **Value range**: an integer ranging from 0 to 20 -**Default value**: **1** (it will be set to 4 by installation tool in default for better performance) +**Default value**: **1** ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/zh/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index a467b358..a7124117 100644 --- a/product/zh/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/zh/docs-mogdb/v1.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/zh/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index 5bc65f79..588ebda0 100644 --- a/product/zh/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/zh/docs-mogdb/v2.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/zh/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index aa58a18f..2c49b7e4 100644 --- a/product/zh/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/zh/docs-mogdb/v2.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/zh/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index d7823310..376d71c0 100644 --- a/product/zh/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/zh/docs-mogdb/v3.0/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4,以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md b/product/zh/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md index d7823310..376d71c0 100644 --- a/product/zh/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md +++ b/product/zh/docs-mogdb/v3.1/reference-guide/guc-parameters/6-write-ahead-log/3-log-replay.md @@ -27,7 +27,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4,以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md b/product/zh/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md index 25b21e67..a9df4eb7 100644 --- a/product/zh/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md +++ b/product/zh/docs-mogdb/v5.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md @@ -77,7 +77,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4,以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md b/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md index ebdf410f..3aaa23e0 100644 --- a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md +++ b/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md @@ -37,7 +37,7 @@ date: 2021-04-20 **取值范围**: 整型,0~20 -**默认值**: 1 (安装工具默认将设置为4,以获得更好的性能) +**默认值**: 1 ## recovery_parse_workers -- Gitee From 307a9581a3b57cafd5846f86d34a7346dd72f7ec Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Mon, 13 May 2024 14:14:51 +0800 Subject: [PATCH 3/5] =?UTF-8?q?fix(mogdb):5.1=E6=94=B9=E6=88=906.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../about-mogdb/mogdb-new-feature/5.0.0.md | 212 ----------------- .../about-mogdb/mogdb-new-feature/5.0.1.md | 54 ----- .../about-mogdb/mogdb-new-feature/5.0.2.md | 55 ----- .../mogdb-new-feature/release-note.md | 14 -- .../{v5.1 => v6.0}/AI-features/ai-feature.md | 0 .../ai4db/abo-optimizer/abo-optimizer.md | 0 .../adaptive-plan-selection-best-practices.md | 0 .../adaptive-plan-selection-overview.md | 0 .../adaptive-plan-selection-prerequisites.md | 0 ...adaptive-plan-selection-troubleshooting.md | 0 .../adaptive-plan-selection-usage-guide.md | 0 .../ai4db-adaptive-plan-selection.md | 0 ...i4db-intelligent-cardinality-estimation.md | 0 ...t-cardinality-estimation-best-practices.md | 0 ...lligent-cardinality-estimation-overview.md | 0 ...nt-cardinality-estimation-prerequisites.md | 0 ...-cardinality-estimation-troubleshooting.md | 0 ...gent-cardinality-estimation-usage-guide.md | 0 .../1-1-x-tuner-overview.md | 0 .../1-2-preparations.md | 0 .../1-3-examples.md | 0 .../1-4-obtaining-help-information.md | 0 .../1-5-command-reference.md | 0 .../1-6-Troubleshooting.md | 0 .../2-1-single-query-index-recommendation.md | 0 .../2-2-virtual-index.md | 0 ...2-3-workload-level-index-recommendation.md | 0 .../3-1-overview.md | 0 .../3-2-environment-deployment.md | 0 .../3-3-usage-guide.md | 0 .../3-4-obtaining-help-information.md | 0 .../3-5-command-reference.md | 0 .../3-6-troubleshooting.md | 0 .../4-1-overview.md | 0 .../4-2-environment-deployment.md | 0 .../4-3-usage-guide.md | 0 .../4-4-obtaining-help-information.md | 0 .../4-5-command-reference.md | 0 .../4-6-troubleshooting.md | 0 .../5-1-overview.md | 0 .../5-2-usage-guide.md | 0 .../5-3-obtaining-help-information.md | 0 .../5-4-command-reference.md | 0 .../5-5-troubleshooting.md | 0 .../6-1-overview.md | 0 .../6-2-usage-guide.md | 0 .../6-3-obtaining-help-information.md | 0 .../6-4-command-reference.md | 0 .../6-5-troubleshooting.md | 0 .../7-anomaly-detection/7-1-overview.md | 0 .../7-anomaly-detection/7-2-usage-guide.md | 0 .../7-3-obtaining-help-information.md | 0 .../7-4-command-reference.md | 0 .../7-5-troubleshooting.md | 0 .../ai-sub-functions-of-the-dbmind.md | 0 .../anomaly-analysis-command-reference.md | 0 ...aly-analysis-obtaining-help-information.md | 0 .../anomaly-analysis-overview.md | 0 .../anomaly-analysis-troubleshooting.md | 0 .../anomaly-analysis-usage-guide.md | 0 .../anomaly-analysis/anomaly-analysis.md | 0 .../anomaly-detection-command-reference.md | 0 ...ly-detection-obtaining-help-information.md | 0 .../anomaly-detection-overview.md | 0 .../anomaly-detection-troubleshooting.md | 0 .../anomaly-detection-usage-guide.md | 0 .../anomaly-detection/anomaly-detection.md | 0 ...cast-trend-prediction-command-reference.md | 0 ...trend-prediction-environment-deployment.md | 0 ...d-prediction-obtaining-help-information.md | 0 .../forcast-trend-prediction-overview.md | 0 ...orcast-trend-prediction-troubleshooting.md | 0 .../forcast-trend-prediction-usage-guide.md | 0 .../forcast-trend-prediction.md | 0 .../index-advisor-index-recommendation.md | 0 .../single-query-index-recommendation.md | 0 .../virtual-index.md | 0 .../workload-level-index-recommendation.md | 0 .../slow-sql-statements-command-reference.md | 0 ...w-sql-statements-environment-deployment.md | 0 ...l-statements-obtaining-help-information.md | 0 .../slow-sql-statements-overview.md | 0 .../slow-sql-statements-troubleshooting.md | 0 .../slow-sql-statements-usage-guide.md | 0 .../slow-sql-statements.md | 0 ...l-statement-rewriting-command-reference.md | 0 ...nt-rewriting-obtaining-help-information.md | 0 ...writer-sql-statement-rewriting-overview.md | 0 ...sql-statement-rewriting-troubleshooting.md | 0 ...ter-sql-statement-rewriting-usage-guide.md | 0 .../sql-rewriter-sql-statement-rewriting.md | 0 ...ag-slow-sql-discovery-command-reference.md | 0 ...ql-discovery-obtaining-help-information.md | 0 .../sqldiag-slow-sql-discovery-overview.md | 0 ...diag-slow-sql-discovery-troubleshooting.md | 0 .../sqldiag-slow-sql-discovery-usage-guide.md | 0 .../sqldiag-slow-sql-discovery.md | 0 .../x-tuner-command-reference.md | 0 .../x-tuner-examples.md | 0 .../x-tuner-obtaining-help-information.md | 0 .../x-tuner-overview.md | 0 ...er-parameter-optimization-and-diagnosis.md | 0 .../x-tuner-preparations.md | 0 .../x-tuner-troubleshooting.md | 0 .../ai4db/ai4db-autonomous-database-o&m.md | 0 .../components-that-support-dbmind.md | 0 .../prometheus-exporter-command-reference.md | 0 ...metheus-exporter-environment-deployment.md | 0 ...eus-exporter-obtaining-help-information.md | 0 .../prometheus-exporter-overview.md | 0 .../prometheus-exporter-troubleshooting.md | 0 .../prometheus-exporter-usage-guide.md | 0 .../prometheus-exporter.md | 0 .../ai4db/dbmind-mode/1-service.md | 0 .../ai4db/dbmind-mode/2-component.md | 0 .../AI-features/ai4db/dbmind-mode/3-set.md | 0 .../ai4db/dbmind-mode/component.md | 0 .../ai4db/dbmind-mode/dbmind-mode.md | 0 .../AI-features/ai4db/dbmind-mode/service.md | 0 .../AI-features/ai4db/dbmind-mode/set.md | 0 .../{v5.1 => v6.0}/AI-features/db4ai/db4ai.md | 0 ...query-for-model-training-and-prediction.md | 0 ...i-snapshots-for-data-version-management.md | 0 .../db4ai/full-process-ai/full-process-ai.md | 0 .../full-process-ai/plpython-fenced-mode.md | 0 .../AI-features/db4ai/native-db4ai-engine.md | 0 .../en/docs-mogdb/{v5.1 => v6.0}/_index.md | 0 .../MogDB-compared-to-openGauss.md | 0 .../{v5.1 => v6.0}/about-mogdb/about-mogdb.md | 0 .../mogdb-new-feature/release-note.md | 14 ++ .../2-docker-based-mogdb.md | 0 .../open-source-components/DBMS-RANDOM.md | 0 .../open-source-components/compat-tools.md | 0 .../open-source-components/mog_filedump.md | 0 .../open-source-components/mog_xlogdump.md | 0 .../open-source-components/mogdb-monitor.md | 0 .../open-source-components.md | 0 .../about-mogdb/terms-of-use.md | 0 .../about-mogdb/usage-limitations.md | 0 .../administrator-guide.md | 0 .../backup-and-restoration-overview.md | 0 .../backup-and-restoration.md | 0 .../flashback-restoration.md | 0 .../logical-backup-and-restoration.md | 0 .../physical-backup-and-restoration.md | 0 .../column-store-tables-management.md | 0 ...mon-primary-backup-deployment-scenarios.md | 0 .../database-deployment-scenario.md | 0 .../resource-pooling-architecture.md | 0 ...rrent-architectural-feature-constraints.md | 0 ...-developer-environment-deployment-guide.md | 0 .../two-city-three-dc-dr.md | 0 ...-and-gs_dumpall-to-export-data-overview.md | 0 .../2-exporting-a-single-database.md | 0 .../3-exporting-all-databases.md | 0 ...-by-a-user-without-required-permissions.md | 0 .../exporting-data/exporting-data.md | 0 .../importing-and-exporting-data.md | 0 .../importing-data/1-import-modes.md | 0 ...10-managing-concurrent-write-operations.md | 0 ...ing-the-INSERT-statement-to-insert-data.md | 0 ...OPY-FROM-STDIN-statement-to-import-data.md | 0 ...sing-a-gsql-meta-command-to-import-data.md | 0 .../5-using-gs_restore-to-import-data.md | 0 .../6-updating-data-in-a-table.md | 0 .../importing-data/7-deep-copy.md | 0 .../importing-data/8-ANALYZE-table.md | 0 .../9-doing-VACUUM-to-a-table.md | 0 .../importing-data/importing-data.md | 0 .../localization/character-set-support.md | 0 .../localization/collation-support.md | 0 .../localization/locale-support.md | 0 .../localization/localization.md | 0 .../1-introducing-mot/1-mot-introduction.md | 0 .../2-mot-features-and-benefits.md | 0 .../3-mot-key-technologies.md | 0 .../4-mot-usage-scenarios.md | 0 .../5-mot-performance-benchmarks.md | 0 .../1-introducing-mot/introducing-mot.md | 0 .../2-using-mot/1-using-mot-overview.md | 0 .../2-using-mot/2-mot-preparation.md | 0 .../2-using-mot/3-mot-deployment.md | 0 .../mot-engine/2-using-mot/4-mot-usage.md | 0 .../2-using-mot/5-mot-administration.md | 0 .../6-mot-sample-tpcc-benchmark.md | 0 .../mot-engine/2-using-mot/using-mot.md | 0 .../mot-engine/3-concepts-of-mot/3-1.md | 0 .../mot-engine/3-concepts-of-mot/3-2.md | 0 .../mot-engine/3-concepts-of-mot/3-3.md | 0 .../mot-engine/3-concepts-of-mot/3-4.md | 0 .../mot-engine/3-concepts-of-mot/3-5.md | 0 .../mot-engine/3-concepts-of-mot/3-6.md | 0 .../mot-engine/3-concepts-of-mot/3-7.md | 0 .../mot-engine/3-concepts-of-mot/3-8.md | 0 .../mot-engine/3-concepts-of-mot/3-9.md | 0 .../3-concepts-of-mot/concepts-of-mot.md | 0 .../mot-engine/4-appendix/1-references.md | 0 .../mot-engine/4-appendix/2-glossary.md | 0 .../mot-engine/4-appendix/mot-appendix.md | 0 .../mot-engine/mot-engine.md | 0 .../primary-and-standby-management.md | 0 .../0-starting-and-stopping-mogdb.md | 0 .../1-routine-maintenance-check-items.md | 0 ...0-data-security-maintenance-suggestions.md | 0 .../routine-maintenance/11-log-reference.md | 0 .../2-checking-os-parameters.md | 0 .../3-checking-mogdb-health-status.md | 0 .../4-checking-database-performance.md | 0 .../5-checking-and-deleting-logs.md | 0 .../6-checking-time-consistency.md | 0 ...g-the-number-of-application-connections.md | 0 .../8-routinely-maintaining-tables.md | 0 .../9-routinely-recreating-an-index.md | 0 .../exporting-and-viewing-the-wdr.md | 0 .../routine-maintenance.md | 0 .../routine-maintenance/slow-sql-diagnosis.md | 0 .../using-the-gsql-client-for-connection.md | 0 .../administrator-guide/upgrade-guide.md | 0 .../abo-optimizer/adaptive-plan-selection.md | 0 ...haracteristic-description-abo-optimizer.md | 0 .../intelligent-cardinality-estimation.md | 0 .../ai-capabilities/ai-capabilities.md | 0 ...ection-forecast-and-exception-detection.md | 0 ...-cause-analysis-for-slow-sql-statements.md | 0 .../3-index-recommendation.md | 0 .../4-parameter-tuning-and-diagnosis.md | 0 .../5-slow-sql-statement-discovery.md | 0 .../characteristic-description-ai4db.md | 0 .../db4ai-database-driven-ai.md | 0 .../1-standard-sql.md | 0 .../2-standard-development-interfaces.md | 0 .../3-postgresql-api-compatibility.md | 0 .../ECPG.md | 0 .../MogDB-MySQL-compatibility.md | 0 .../MogDB-Oracle-compatibility.md | 0 .../application-development-interfaces.md | 0 .../characteristic-description-overview.md | 0 .../characteristic-description.md | 0 .../add-rowtype-attribute-to-the-view.md | 0 ...tions-distinct-performance-optimization.md | 0 ...aggregate-functions-support-keep-clause.md | 0 ...e-functions-support-scenario-extensions.md | 0 .../compatibility/compatibility.md | 0 ...h-mysql-alias-support-for-single-quotes.md | 0 ...ate-current_time-keywords-as-field-name.md | 0 .../compatibility/custom-type-array.md | 0 .../for-update-supports-outer-join.md | 0 .../compatibility/format-error-backtrace.md | 0 .../mogdb-supports-insert-all.md | 0 .../oracle-dblink-syntax-compatibility.md | 0 ...hen-creating-package-function-procedure.md | 0 ...bypass-method-when-merge-into-hit-index.md | 0 ...es-to-procedure-and-function-parameters.md | 0 ...-constants-in-package-as-default-values.md | 0 .../support-passing-the-count-attribute.md | 0 .../compatibility/support-plpgsql-subtype.md | 0 .../support-q-quote-escape-character.md | 0 ...g-two-date-types-to-return-numeric-type.md | 0 ...ntheses-for-function-without-parameters.md | 0 .../compatibility/support-table-function.md | 0 ...the-same-name-after-the-end-with-oracle.md | 0 .../compatibility/support-where-current-of.md | 0 .../1-access-control-model.md | 0 .../10-row-level-access-control.md | 0 .../11-password-strength-verification.md | 0 ...ity-query-in-a-fully-encrypted-database.md | 0 .../13-ledger-database-mechanism.md | 0 .../14-transparent-data-encryption.md | 0 ...ation-of-control-and-access-permissions.md | 0 .../3-database-encryption-authentication.md | 0 .../4-data-encryption-and-storage.md | 0 .../database-security/5-database-audit.md | 0 .../6-network-communication-security.md | 0 .../database-security/7-resource-label.md | 0 .../database-security/8-unified-audit.md | 0 .../9-dynamic-data-anonymization.md | 0 .../database-security/database-security.md | 0 ...ort-for-functions-and-stored-procedures.md | 0 .../10-autonomous-transaction.md | 0 .../11-global-temporary-table.md | 0 .../12-pseudocolumn-rownum.md | 0 .../13-stored-procedure-debugging.md | 0 ...-load-balancing-and-readwrite-isolation.md | 0 .../15-in-place-update-storage-engine.md | 0 .../16-publication-subscription.md | 0 .../17-foreign-key-lock-enhancement.md | 0 .../18-data-compression-in-oltp-scenarios.md | 0 .../19-transaction-async-submit.md | 0 .../enterprise-level-features/2-sql-hints.md | 0 .../20-copy-import-optimization.md | 0 .../21-dynamic-partition-pruning.md | 0 .../22-sql-running-status-observation.md | 0 .../23-index-creation-parallel-control.md | 0 .../24-brin-index.md | 0 .../25-bloom-index.md | 0 .../3-full-text-indexing.md | 0 .../4-copy-interface-for-error-tolerance.md | 0 .../5-partitioning.md | 0 ...support-for-advanced-analysis-functions.md | 0 .../7-materialized-view.md | 0 .../8-hyperloglog.md | 0 .../9-creating-an-index-online.md | 0 .../enterprise-level-features.md | 0 .../event-trigger.md | 0 .../high-availability/1-primary-standby.md | 0 .../10-adding-or-deleting-a-standby-server.md | 0 ...-entering-the-maximum-availability-mode.md | 0 .../12-parallel-logical-decoding.md | 0 .../high-availability/13-dcf.md | 0 .../high-availability/14-cm.md | 0 .../high-availability/15-global-syscache.md | 0 ...-a-standby-node-to-build-a-standby-node.md | 0 .../17-two-city-three-dc-dr.md | 0 .../2-logical-replication.md | 0 .../high-availability/4-logical-backup.md | 0 .../high-availability/5-physical-backup.md | 0 .../6-automatic-job-retry-upon-failure.md | 0 .../high-availability/7-ultimate-rto.md | 0 .../8-cascaded-standby-server.md | 0 .../high-availability/9-delayed-replay.md | 0 ...omponent-supporting-two-node-deployment.md | 0 .../high-availability/ddl-query-of-view.md | 0 ...vailability-based-on-the-paxos-protocol.md | 0 .../high-availability/high-availability.md | 0 .../high-performance/1-cbo-optimizer.md | 0 .../high-performance/10-xlog-no-lock-flush.md | 0 .../11-parallel-page-based-redo-for-ustore.md | 0 ...store-execution-to-vectorized-execution.md | 0 .../high-performance/2-llvm.md | 0 .../high-performance/3-vectorized-engine.md | 0 .../4-hybrid-row-column-store.md | 0 .../5-adaptive-compression.md | 0 ...-kunpeng-numa-architecture-optimization.md | 0 .../8-high-concurrency-of-thread-pools.md | 0 .../9-smp-for-parallel-execution.md | 0 .../adaptive-two-phase-aggregation.md | 0 .../astore-row-level-compression.md | 0 .../btree-index-compression.md | 0 ...hancement-of-tracing-backend-key-thread.md | 0 .../enhancement-of-wal-redo-performance.md | 0 .../high-performance/high-performance.md | 0 .../ock-accelerated-data-transmission.md | 0 ...ock-scrlock-accelerate-distributed-lock.md | 0 .../ordering-operator-optimization.md | 0 .../high-performance/parallel-index-scan.md | 0 .../parallel-query-optimization.md | 0 .../high-performance/sql-bypass.md | 0 .../high-performance/tracing-SQL-function.md | 0 .../maintainability/1-gray-upgrade.md | 0 .../2-workload-diagnosis-report.md | 0 .../maintainability/3-slow-sql-diagnosis.md | 0 .../4-session-performance-diagnosis.md | 0 .../5-system-kpi-aided-diagnosis.md | 0 .../maintainability/built-in-stack-tool.md | 0 .../maintainability/dcf-module-tracing.md | 0 .../error-when-writing-illegal-characters.md | 0 .../maintainability/extension-splitting.md | 0 .../maintainability/fault-diagnosis.md | 0 .../light-lock-export-and-analysis.md | 0 .../maintainability/maintainability.md | 0 .../maintainability/pageinspect-pagehack.md | 0 .../maintainability/sql-patch.md | 0 ...a-distributed-database-using-kubernetes.md | 0 .../distributed-analysis-capabilities.md | 0 .../distributed-database-capability.md | 0 .../middleware/middleware.md | 0 ...ency-escape-at-the-infrastructure-layer.md | 0 .../workload-management.md | 0 .../cm-fault/cm-cluster-brain-split-fault.md | 0 .../cm-fault/cm-cluster-manual-failover.md | 0 .../cm-fault/cm-fault.md | 0 .../common-fault-locating-cases.md | 0 ...e-dump-occurs-after-installation-on-x86.md | 0 ...core-dump-occurs-due-to-full-disk-space.md | 0 ...settings-of-guc-parameter-log-directory.md | 0 ...e-dump-occurs-when-removeipc-is-enabled.md | 0 .../core-fault-locating.md | 0 .../after-you-run-the-du-command.md | 0 .../disk-space-usage-reaches-the-threshold.md | 0 ...or-no-space-left-on-device-is-displayed.md | 0 .../file-is-damaged-in-the-xfs-file-system.md | 0 .../file-system-disk-memory.md | 0 .../insufficient-memory.md | 0 .../shared-memory-leak.md | 0 .../when-the-tpcc-is-running.md | 0 .../index-fault/b-tree-index-faults.md | 0 .../index-fault/index-fault.md | 0 .../index-fault/reindexing-fails.md | 0 ...hen-a-user-specifies-only-an-index-name.md | 0 ...-error-occurs-during-integer-conversion.md | 0 .../different-data-is-displayed.md | 0 .../forcibly-terminating-a-session.md | 0 .../permission-session-data-type.md | 0 .../performance-deterioration.md | 0 .../primary-node-is-hung-in-demoting.md | 0 .../service-ha-concurrency/query-failure.md | 0 .../service-ha-concurrency.md | 0 .../service-startup-failure.md | 0 .../standby-node-in-the-need-repair-state.md | 0 .../too-many-clients-already.md | 0 ...alyzing-the-status-of-a-query-statement.md | 0 ...ng-whether-a-query-statement-is-blocked.md | 0 .../lock-wait-timeout-is-displayed.md | 0 .../sql-fault/low-query-efficiency.md | 0 .../slow-response-to-a-query-statement.md | 0 .../sql-fault/sql-fault.md | 0 ...ed-when-the-table-partition-is-modified.md | 0 .../table-partition-table.md | 0 .../table-size-does-not-change.md | 0 .../common-fault-locating-methods.md | 0 .../common-faults-and-identification.md | 0 .../{v5.1 => v6.0}/communication-matrix.md | 0 .../developer-guide/1-1-stored-procedure.md | 0 ...-introduction-to-autonomous-transaction.md | 0 ...ction-supporting-autonomous-transaction.md | 0 ...edure-supporting-autonomous-transaction.md | 0 .../autonomous-transaction/4-restrictions.md | 0 ...block-supporting-autonomous-transaction.md | 0 .../1-development-based-on-jdbc-overview.md | 0 .../10-example-common-operations.md | 0 ...e-retrying-sql-queries-for-applications.md | 0 ...-and-exporting-data-through-local-files.md | 0 ...rating-data-from-a-my-database-to-mogdb.md | 0 .../14-example-logic-replication-code.md | 0 ...-to-the-database-in-different-scenarios.md | 0 .../15-JDBC/1-java-sql-Connection.md | 0 .../15-JDBC/10-javax-sql-DataSource.md | 0 .../15-JDBC/11-javax-sql-PooledConnection.md | 0 .../15-JDBC/12-javax-naming-Context.md | 0 ...-javax-naming-spi-InitialContextFactory.md | 0 .../15-JDBC/14-CopyManager.md | 0 .../15-JDBC/2-java-sql-CallableStatement.md | 0 .../15-JDBC/3-java-sql-DatabaseMetaData.md | 0 .../15-JDBC/4-java-sql-Driver.md | 0 .../15-JDBC/5-java-sql-PreparedStatement.md | 0 .../15-JDBC/6-java-sql-ResultSet.md | 0 .../15-JDBC/7-java-sql-ResultSetMetaData.md | 0 .../15-JDBC/8-java-sql-Statement.md | 0 .../9-javax-sql-ConnectionPoolDataSource.md | 0 .../15-JDBC/jdbc-interface-reference.md | 0 ...kage-driver-class-and-environment-class.md | 0 .../3-development-process.md | 0 .../4-loading-the-driver.md | 0 .../5-connecting-to-a-database.md | 0 .../6-connecting-to-a-database-using-ssl.md | 0 .../7-running-sql-statements.md | 0 .../8-processing-data-in-a-result-set.md | 0 .../8.1-log-management.md | 0 .../9-closing-a-connection.md | 0 .../connecting-to-a-database-using-uds.md | 0 .../development-based-on-jdbc.md | 0 ...imary-and-backup-cluster-load-balancing.md | 0 .../jdbc-based-common-parameter-reference.md | 0 .../jdbc-release-notes.md | 0 .../1-development-based-on-odbc.md | 0 ...es-dependent-libraries-and-header-files.md | 0 ...nfiguring-a-data-source-in-the-linux-os.md | 0 .../4-development-process.md | 0 ...mple-common-functions-and-batch-binding.md | 0 ...pplication-scenarios-and-configurations.md | 0 .../6-ODBC/2-0-odbc-overview.md | 0 .../6-ODBC/2-1-SQLAllocEnv.md | 0 .../6-ODBC/2-10-SQLExecDirect.md | 0 .../6-ODBC/2-11-SQLExecute.md | 0 .../6-ODBC/2-12-SQLFetch.md | 0 .../6-ODBC/2-13-SQLFreeStmt.md | 0 .../6-ODBC/2-14-SQLFreeConnect.md | 0 .../6-ODBC/2-15-SQLFreeHandle.md | 0 .../6-ODBC/2-16-SQLFreeEnv.md | 0 .../6-ODBC/2-17-SQLPrepare.md | 0 .../6-ODBC/2-18-SQLGetData.md | 0 .../6-ODBC/2-19-SQLGetDiagRec.md | 0 .../6-ODBC/2-2-SQLAllocConnect.md | 0 .../6-ODBC/2-20-SQLSetConnectAttr.md | 0 .../6-ODBC/2-21-SQLSetEnvAttr.md | 0 .../6-ODBC/2-22-SQLSetStmtAttr.md | 0 .../6-ODBC/2-23-Examples.md | 0 .../6-ODBC/2-3-SQLAllocHandle.md | 0 .../6-ODBC/2-4-SQLAllocStmt.md | 0 .../6-ODBC/2-5-SQLBindCol.md | 0 .../6-ODBC/2-6-SQLBindParameter.md | 0 .../6-ODBC/2-7-SQLColAttribute.md | 0 .../6-ODBC/2-8-SQLConnect.md | 0 .../6-ODBC/2-9-SQLDisconnect.md | 0 .../6-ODBC/odbc-interface-reference.md | 0 ...1-database-connection-control-functions.md | 0 .../10-PQstatus.md | 0 .../2-PQconnectdbParams.md | 0 .../3-PQconnectdb.md | 0 .../4-PQconninfoParse.md | 0 .../5-PQconnectStart.md | 0 .../6-PQerrorMessage.md | 0 .../7-PQsetdbLogin.md | 0 .../8-PQfinish.md | 0 .../9-PQreset.md | 0 .../1-PQclear.md | 0 .../10-PQntuples.md | 0 .../11-PQprepare.md | 0 .../12-PQresultStatus.md | 0 .../2-PQexec.md | 0 .../3-PQexecParams.md | 0 .../4-PQexecParamsBatch.md | 0 .../5-PQexecPrepared.md | 0 .../6-PQexecPreparedBatch.md | 0 .../7-PQfname.md | 0 .../8-PQgetvalue.md | 0 .../9-PQnfields.md | 0 .../database-statement-execution-functions.md | 0 ...ons-for-asynchronous-command-processing.md | 0 .../2-PQsendQuery.md | 0 .../3-PQsendQueryParams.md | 0 .../4-PQsendPrepare.md | 0 .../5-PQsendQueryPrepared.md | 0 .../6-PQflush.md | 0 .../1-PQgetCancel.md | 0 .../2-PQfreeCancel.md | 0 .../3-PQcancel.md | 0 ...tions-for-canceling-queries-in-progress.md | 0 .../2-libpq/libpq-api-reference.md | 0 .../dependent-header-files-of-libpq.md | 0 .../development-based-on-libpq.md | 0 .../development-process.md | 0 .../libpq-example.md | 0 .../link-parameters.md | 0 .../1-psycopg-based-development.md | 0 .../10.1-example-common-operations.md | 0 .../1-psycopg2-connect.md | 0 .../10-connection-close.md | 0 .../2-connection-cursor.md | 0 .../3-cursor-execute-query-vars-list.md | 0 .../4-curosr-executemany-query-vars-list.md | 0 .../5-connection-commit.md | 0 .../6-connection-rollback.md | 0 .../7-cursor-fetchone.md | 0 .../8-cursor-fetchall.md | 0 .../9-cursor-close.md | 0 .../psycopg-api-reference.md | 0 .../12-psycopg2-release-notes.md | 0 .../2-psycopg-package.md | 0 .../3.1-development-process.md | 0 .../4-connecting-to-a-database.md | 0 ...daptation-of-python-values-to-sql-types.md | 0 .../6-new-features-in-mogdb.md | 0 .../9-connecting-to-the-database-using-ssl.md | 0 .../developer-guide/dev/5-commissioning.md | 0 .../dev/application-development-tutorial.md | 0 .../design-specification.md | 0 ...roduction-to-development-specifications.md | 0 .../naming-specification.md | 0 .../overview-of-development-specifications.md | 0 .../postgresql-compatibility.md | 0 .../query-operations.md | 0 .../syntax-specification.md | 0 .../developer-guide/developer-guide.md | 0 .../developer-guide/extension/extension.md | 0 .../foreign-data-wrapper/1-oracle_fdw.md | 0 .../foreign-data-wrapper/2-mysql_fdw.md | 0 .../foreign-data-wrapper/3-postgres_fdw.md | 0 .../extension/foreign-data-wrapper/dblink.md | 0 .../foreign-data-wrapper/fdw-introduction.md | 0 .../foreign-data-wrapper/file_fdw.md | 0 .../extension/pg_bulkload-user-guide.md | 0 .../extension/pg_prewarm-user-guide.md | 0 .../extension/pg_repack-user-guide.md | 0 .../extension/pg_trgm-user-guide.md | 0 .../postgis-extension/postgis-extension.md | 0 .../postgis-extension/postgis-overview.md | 0 .../postgis-support-and-constraints.md | 0 .../postgis-extension/using-postgis.md | 0 .../extension/wal2json-user-guide.md | 0 .../developer-guide/extension/whale.md | 0 .../logical-decoding/1-logical-decoding.md | 0 ...cal-decoding-by-sql-function-interfaces.md | 0 .../logical-decoding/logical-decoding.md | 0 .../logical-replication.md | 0 .../publication-subscription/architecture.md | 0 .../configuration-settings.md | 0 .../publication-subscription/conflicts.md | 0 .../publication-subscription/monitoring.md | 0 .../publication-subscription.md | 0 .../publication-subscription/publications.md | 0 .../publication-subscription/quick-setup.md | 0 .../publication-subscription/restrictions.md | 0 .../publication-subscription/security.md | 0 .../publication-subscription/subscriptions.md | 0 .../1-materialized-view-overview.md | 0 .../1-full-materialized-view-overview.md | 0 .../2-full-materialized-view-usage.md | 0 ...terialized-view-support-and-constraints.md | 0 .../full-materialized-view.md | 0 ...-incremental-materialized-view-overview.md | 0 .../2-incremental-materialized-view-usage.md | 0 ...terialized-view-support-and-constraints.md | 0 .../incremental-materialized-view.md | 0 .../assessment-tool.md | 0 .../dolphin-extension/dolphin-extension.md | 0 .../dolphin-extension/dolphin-installation.md | 0 .../dolphin-extension/dolphin-overview.md | 0 .../dolphin-extension/dolphin-restrictions.md | 0 .../dolphin-reset-parameters.md | 0 .../dolphin-syntax/dolphin-syntax.md | 0 .../dolphin-syntax/guc-parameters.md | 0 .../dolphin-column-name-identifiers.md | 0 .../identifiers/dolphin-identifiers.md | 0 .../data-types/dolphin-binary-types.md | 0 .../data-types/dolphin-bit-string-types.md | 0 .../data-types/dolphin-bool-types.md | 0 .../data-types/dolphin-character-types.md | 0 .../data-types/dolphin-data-types.md | 0 .../data-types/dolphin-date-time-types.md | 0 .../data-types/dolphin-enumeration-types.md | 0 .../data-types/dolphin-numeric-types.md | 0 .../sql-reference/dolphin-dcl-syntax.md | 0 .../sql-reference/dolphin-ddl-syntax.md | 0 .../sql-reference/dolphin-dml-syntax.md | 0 .../sql-reference/dolphin-keywords.md | 0 .../sql-reference/dolphin-sql-reference.md | 0 .../dolphin-conditional-expressions.md | 0 .../expressions/dolphin-expressions.md | 0 .../dolphin-advisory-lock-functions.md | 0 .../dolphin-aggregate-functions.md | 0 ...phin-arithmetic-functions-and-operators.md | 0 .../dolphin-assignment-operators.md | 0 .../dolphin-b-compatible-database-lock.md | 0 ...phin-bit-string-functions-and-operators.md | 0 ...cter-processing-functions-and-operators.md | 0 .../dolphin-comment-operators.md | 0 ...hin-compatible-operators-and-operations.md | 0 ...olphin-conditional-expression-functions.md | 0 ...time-processing-functions-and-operators.md | 0 .../dolphin-functions-and-operators.md | 0 ...phin-json-jsonb-functions-and-operators.md | 0 .../dolphin-logical-operators.md | 0 ...network-address-functions-and-operators.md | 0 .../dolphin-system-information-functions.md | 0 .../dolphin-type-conversion-functions.md | 0 .../sql-syntax/dolphin-alter-database.md | 0 .../sql-syntax/dolphin-alter-function.md | 0 .../sql-syntax/dolphin-alter-procedure.md | 0 .../sql-syntax/dolphin-alter-server.md | 0 .../dolphin-alter-table-partition.md | 0 .../sql-syntax/dolphin-alter-table.md | 0 .../sql-syntax/dolphin-alter-tablespace.md | 0 .../sql-syntax/dolphin-alter-view.md | 0 .../sql-syntax/dolphin-analyze-analyse.md | 0 .../sql-reference/sql-syntax/dolphin-ast.md | 0 .../sql-syntax/dolphin-checksum-table.md | 0 .../sql-syntax/dolphin-create-database.md | 0 .../sql-syntax/dolphin-create-function.md | 0 .../sql-syntax/dolphin-create-index.md | 0 .../sql-syntax/dolphin-create-procedure.md | 0 .../sql-syntax/dolphin-create-server.md | 0 .../sql-syntax/dolphin-create-table-as.md | 0 .../dolphin-create-table-partition.md | 0 .../sql-syntax/dolphin-create-table.md | 0 .../sql-syntax/dolphin-create-tablespace.md | 0 .../sql-syntax/dolphin-create-trigger.md | 0 .../sql-syntax/dolphin-create-view.md | 0 .../sql-syntax/dolphin-describe-table.md | 0 .../sql-reference/sql-syntax/dolphin-do.md | 0 .../sql-syntax/dolphin-drop-database.md | 0 .../sql-syntax/dolphin-drop-index.md | 0 .../sql-syntax/dolphin-drop-tablespace.md | 0 .../sql-syntax/dolphin-execute.md | 0 .../sql-syntax/dolphin-explain.md | 0 .../sql-syntax/dolphin-flush-binary-logs.md | 0 .../sql-syntax/dolphin-grant-revoke-proxy.md | 0 .../sql-reference/sql-syntax/dolphin-grant.md | 0 .../sql-syntax/dolphin-insert.md | 0 .../sql-reference/sql-syntax/dolphin-kill.md | 0 .../sql-syntax/dolphin-load-data.md | 0 .../sql-syntax/dolphin-optimize-table.md | 0 .../sql-syntax/dolphin-prepare.md | 0 .../sql-syntax/dolphin-rename-table.md | 0 .../sql-syntax/dolphin-rename-user.md | 0 .../sql-syntax/dolphin-revoke.md | 0 .../sql-syntax/dolphin-select-hint.md | 0 .../sql-syntax/dolphin-select.md | 0 .../sql-syntax/dolphin-set-charset.md | 0 .../sql-syntax/dolphin-set-password.md | 0 .../sql-syntax/dolphin-show-character-set.md | 0 .../sql-syntax/dolphin-show-collation.md | 0 .../sql-syntax/dolphin-show-columns.md | 0 .../dolphin-show-create-database.md | 0 .../dolphin-show-create-function.md | 0 .../dolphin-show-create-procedure.md | 0 .../sql-syntax/dolphin-show-create-table.md | 0 .../sql-syntax/dolphin-show-create-trigger.md | 0 .../sql-syntax/dolphin-show-create-view.md | 0 .../sql-syntax/dolphin-show-databases.md | 0 .../dolphin-show-function-status.md | 0 .../sql-syntax/dolphin-show-grants.md | 0 .../sql-syntax/dolphin-show-index.md | 0 .../sql-syntax/dolphin-show-master-status.md | 0 .../sql-syntax/dolphin-show-plugins.md | 0 .../sql-syntax/dolphin-show-privileges.md | 0 .../dolphin-show-procedure-status.md | 0 .../sql-syntax/dolphin-show-processlist.md | 0 .../sql-syntax/dolphin-show-slave-hosts.md | 0 .../sql-syntax/dolphin-show-status.md | 0 .../sql-syntax/dolphin-show-table-status.md | 0 .../sql-syntax/dolphin-show-tables.md | 0 .../sql-syntax/dolphin-show-triggers.md | 0 .../sql-syntax/dolphin-show-variables.md | 0 .../sql-syntax/dolphin-show-warnings.md | 0 .../sql-syntax/dolphin-sql-syntax.md | 0 .../sql-syntax/dolphin-update.md | 0 .../sql-syntax/dolphin-use-db_name.md | 0 .../dolphin-assignment-statements.md | 0 .../dolphin-basic-statements.md | 0 .../dolphin-stored-procedures.md | 0 .../system-views/dolphin-INDEX_STATISTIC.md | 0 .../dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md | 0 .../system-views/dolphin-system-views.md | 0 .../mysql-compatible-description.md | 0 .../partition-management.md | 0 .../benefits-of-partition-pruning.md | 0 .../dynamic-partition-pruning.md | 0 ...whether-partition-pruning-has-been-used.md | 0 ...-that-can-be-used-for-partition-pruning.md | 0 .../partition-pruning/partition-pruning.md | 0 .../static-partition-pruning.md | 0 ...ns-for-choosing-a-partitioning-strategy.md | 0 .../when-to-use-hash-partitioning.md | 0 .../when-to-use-list-partitioning.md | 0 .../when-to-use-range-partitioning.md | 0 .../plpgsql/1-1-plpgsql-overview.md | 0 .../plpgsql/1-10-other-statements.md | 0 .../developer-guide/plpgsql/1-11-cursors.md | 0 .../plpgsql/1-12-retry-management.md | 0 .../developer-guide/plpgsql/1-13-debugging.md | 0 .../developer-guide/plpgsql/1-14-package.md | 0 .../developer-guide/plpgsql/1-2-data-types.md | 0 .../plpgsql/1-3-data-type-conversion.md | 0 .../plpgsql/1-4-arrays-and-records.md | 0 .../plpgsql/1-5-declare-syntax.md | 0 .../plpgsql/1-6-basic-statements.md | 0 .../plpgsql/1-7-dynamic-statements.md | 0 .../plpgsql/1-8-control-statements.md | 0 .../plpgsql/1-9-transaction-management.md | 0 .../advanced-packages/advanced-packages.md | 0 .../basic-interfaces/PKG_SERVICE.md | 0 .../basic-interfaces/basic-interfaces.md | 0 .../scheduled-jobs/pkg-service.md | 0 .../scheduled-jobs/scheduled-jobs.md | 0 .../developer-guide/user-defined-functions.md | 0 .../faqs/application-development-faqs.md | 0 .../faqs/deployment-and-maintenance-faqs.md | 0 .../en/docs-mogdb/{v5.1 => v6.0}/faqs/faqs.md | 0 .../faqs/high-availability-faqs.md | 0 .../{v5.1 => v6.0}/faqs/migration-faqs.md | 0 .../{v5.1 => v6.0}/faqs/product-faqs.md | 0 .../{v5.1 => v6.0}/faqs/upgrade-faqs.md | 0 .../en/docs-mogdb/{v5.1 => v6.0}/glossary.md | 0 .../cluster-management/cluster-management.md | 0 .../cm-configuration-parameter/cm-cm_agent.md | 0 .../cm-cm_server.md | 0 .../cm-configuration-parameter.md | 0 .../feature-introduction.md | 0 .../introduction-to-cm_ctl-tool.md | 0 .../introduction-to-cm_persist.md | 0 ...to-installation-and-uninstallation-tool.md | 0 .../manual-configuration-of-vip.md | 0 .../cluster-management/safety-design.md | 0 .../high-available-dcf.md | 0 .../high-available-guide.md | 0 .../docker-installation.md | 0 .../installation-guide/installation-guide.md | 0 .../environment-requirement.md | 0 .../installation-preparation.md | 0 .../os-configuration.md | 0 .../installation-guide/manual-installation.md | 0 .../ptk-based-installation.md | 0 .../recommended-parameter-settings.md | 0 .../mogeaver/mogeaver-overview.md | 0 .../mogeaver/mogeaver-release-notes.md | 0 .../{v5.1 => v6.0}/mogeaver/mogeaver.md | 0 .../en/docs-mogdb/{v5.1 => v6.0}/overview.md | 0 .../TPCC-performance-tuning-guide.md | 0 .../performance-tuning/performance-tuning.md | 0 .../experience-in-rewriting-sql-statements.md | 0 .../sql-tuning/hint-based-tuning.md | 0 .../introduction-to-the-sql-execution-plan.md | 0 .../sql-tuning/query-execution-process.md | 0 ...etting-key-parameters-during-sql-tuning.md | 0 ...iewing-and-modifying-a-table-definition.md | 0 .../sql-tuning/sql-tuning-optimizer.md | 0 .../sql-tuning/sql-tuning.md | 0 .../sql-tuning/tuning-process.md | 0 .../typical-sql-optimization-methods.md | 0 .../sql-tuning/updating-statistics.md | 0 .../system-tuning/configuring-llvm.md | 0 .../system-tuning/configuring-smp.md | 0 .../system-tuning/configuring-ustore.md | 0 .../configuring-vector-engine.md | 0 .../system-tuning/optimizing-os-parameters.md | 0 .../resource-load-management-overview.md | 0 .../resource-load-management.md | 0 .../creating-resource-pool.md | 0 .../enabling-resource-load-management.md | 0 .../resource-management-preparations.md | 0 .../resource-planning.md | 0 .../setting-control-group.md | 0 .../system-tuning/system-tuning.md | 0 .../performance-tuning/wdr/wdr-report.md | 0 .../wdr/wdr-snapshot-schema.md | 0 .../performance-tuning/wdr/wdr.md | 0 .../container-based-installation.md | 0 .../installation-on-a-single-node.md | 0 .../quick-start/mogdb-access/mogdb-access.md | 0 .../use-cli-to-access-mogdb/gsql.md | 0 .../use-cli-to-access-mogdb/pgcli.md | 0 .../use-cli-to-access-mogdb.md | 0 .../use-gui-tools-to-access-mogdb/dbeaver.md | 0 .../mogeaver-usage.md | 0 .../use-gui-tools-to-access-mogdb.md | 0 .../use-middleware-to-access-mogdb.md | 0 ...-configures-mogdb-data-source-reference.md | 0 ...-configures-mogdb-data-source-reference.md | 0 .../adonet.md | 0 .../c-cpp.md | 0 .../go.md | 0 .../java.md | 0 .../nodejs.md | 0 .../python.md | 0 .../rust.md | 0 ...se-programming-language-to-access-mogdb.md | 0 .../quick-start/mogdb-playground.md | 0 .../{v5.1 => v6.0}/quick-start/mogila.md | 0 .../{v5.1 => v6.0}/quick-start/quick-start.md | 0 .../GAUSS-00001-GAUSS-00100.md | 0 .../GAUSS-00101-GAUSS-00200.md | 0 .../GAUSS-00201-GAUSS-00300.md | 0 .../GAUSS-00301-GAUSS-00400.md | 0 .../GAUSS-00401-GAUSS-00500.md | 0 .../GAUSS-00501-GAUSS-00600.md | 0 .../GAUSS-00601-GAUSS-00700.md | 0 .../GAUSS-00701-GAUSS-00800.md | 0 .../GAUSS-00801-GAUSS-00900.md | 0 .../GAUSS-00901-GAUSS-01000.md | 0 .../GAUSS-01001-GAUSS-01100.md | 0 .../GAUSS-01101-GAUSS-01200.md | 0 .../GAUSS-01201-GAUSS-01300.md | 0 .../GAUSS-01301-GAUSS-01400.md | 0 .../GAUSS-01401-GAUSS-01500.md | 0 .../GAUSS-01501-GAUSS-01600.md | 0 .../GAUSS-01601-GAUSS-01700.md | 0 .../GAUSS-01701-GAUSS-01800.md | 0 .../GAUSS-01801-GAUSS-01900.md | 0 .../GAUSS-01901-GAUSS-02000.md | 0 .../GAUSS-02001-GAUSS-02100.md | 0 .../GAUSS-02101-GAUSS-02200.md | 0 .../GAUSS-02201-GAUSS-02300.md | 0 .../GAUSS-02301-GAUSS-02400.md | 0 .../GAUSS-02401-GAUSS-02500.md | 0 .../GAUSS-02501-GAUSS-02600.md | 0 .../GAUSS-02601-GAUSS-02700.md | 0 .../GAUSS-02701-GAUSS-02800.md | 0 .../GAUSS-02801-GAUSS-02900.md | 0 .../GAUSS-02901-GAUSS-03000.md | 0 .../GAUSS-03001-GAUSS-03100.md | 0 .../GAUSS-03101-GAUSS-03200.md | 0 .../GAUSS-03201-GAUSS-03300.md | 0 .../GAUSS-03301-GAUSS-03400.md | 0 .../GAUSS-03401-GAUSS-03500.md | 0 .../GAUSS-03501-GAUSS-03600.md | 0 .../GAUSS-03601-GAUSS-03700.md | 0 .../GAUSS-03701-GAUSS-03800.md | 0 .../GAUSS-03801-GAUSS-03900.md | 0 .../GAUSS-03901-GAUSS-04000.md | 0 .../GAUSS-04001-GAUSS-04100.md | 0 .../GAUSS-04101-GAUSS-04200.md | 0 .../GAUSS-04201-GAUSS-04300.md | 0 .../GAUSS-04301-GAUSS-04400.md | 0 .../GAUSS-04401-GAUSS-04500.md | 0 .../GAUSS-04501-GAUSS-04600.md | 0 .../GAUSS-04601-GAUSS-04700.md | 0 .../GAUSS-04701-GAUSS-04800.md | 0 .../GAUSS-04801-GAUSS-04900.md | 0 .../GAUSS-04901-GAUSS-05000.md | 0 .../GAUSS-05001-GAUSS-05100.md | 0 .../GAUSS-05101-GAUSS-05200.md | 0 .../GAUSS-05201-GAUSS-05300.md | 0 .../GAUSS-05301-GAUSS-05400.md | 0 .../GAUSS-05401-GAUSS-05500.md | 0 .../GAUSS-05501-GAUSS-05600.md | 0 .../GAUSS-05601-GAUSS-05700.md | 0 .../GAUSS-05701-GAUSS-05800.md | 0 .../GAUSS-05801-GAUSS-05900.md | 0 .../GAUSS-05901-GAUSS-06000.md | 0 .../GAUSS-06001-GAUSS-06100.md | 0 .../GAUSS-06101-GAUSS-06200.md | 0 .../GAUSS-06201-GAUSS-06300.md | 0 .../GAUSS-06301-GAUSS-06400.md | 0 .../GAUSS-06401-GAUSS-06500.md | 0 .../GAUSS-06501-GAUSS-06600.md | 0 .../GAUSS-06601-GAUSS-06700.md | 0 .../GAUSS-06701-GAUSS-06800.md | 0 .../GAUSS-06801-GAUSS-06900.md | 0 .../GAUSS-06901-GAUSS-07000.md | 0 .../GAUSS-07001-GAUSS-07100.md | 0 .../GAUSS-07101-GAUSS-07200.md | 0 .../GAUSS-07201-GAUSS-07300.md | 0 .../GAUSS-07301-GAUSS-07400.md | 0 .../GAUSS-07401-GAUSS-07500.md | 0 .../GAUSS-50000-GAUSS-50999.md | 0 .../GAUSS-51000-GAUSS-51999.md | 0 .../GAUSS-52000-GAUSS-52999.md | 0 .../GAUSS-53000-GAUSS-53699.md | 0 .../class00-class21.md | 0 .../class0A-class0Z.md | 0 .../class22-class24.md | 0 .../class25-class40.md | 0 .../class2B-class2F.md | 0 .../class3B-class3F.md | 0 .../class42-class44.md | 0 .../class53-class58.md | 0 .../classCG-classTS.md | 0 .../classF0-classP0.md | 0 .../classXX-classYY.md | 0 .../description-of-sql-error-codes.md | 0 .../sqlstate-values-of-mogdb-cm-error-code.md | 0 .../sqlstate-values-of-mogdb-error-code.md | 0 .../error-code-reference.md | 0 .../third-party-library-error-codes.md | 0 .../error-log-reference.md | 0 .../kernel-error-message.md | 0 .../aggregate-functions.md | 0 .../ai-feature-functions.md | 0 .../array-functions-and-operators.md | 0 .../binary-string-functions-and-operators.md | 0 .../bit-string-functions-and-operators.md | 0 ...cter-processing-functions-and-operators.md | 0 .../comparison-operators.md | 0 .../conditional-expressions-functions.md | 0 ...a-damage-detection-and-repair-functions.md | 0 ...time-processing-functions-and-operators.md | 0 .../dynamic-data-masking-functions.md | 0 .../encrypted-equality-functions.md | 0 .../event-trigger-functions.md | 0 .../fault-injection-system-function.md | 0 .../functions-and-operators.md | 0 .../geometric-functions-and-operators.md | 0 .../global-syscache-feature-functions.md | 0 .../global-temporary-table-functions.md | 0 .../functions-and-operators/hash-function.md | 0 .../hll-functions-and-operators.md | 0 .../internal-functions-1.md | 0 .../internal-functions-2.md | 0 .../internal-functions/internal-functions.md | 0 .../functions-and-operators/json-functions.md | 0 .../ledger-database-functions.md | 0 .../logical-operators.md | 0 .../mathematical-functions-and-operators.md | 0 .../mode-matching-operators.md | 0 ...network-address-functions-and-operators.md | 0 .../obsolete-functions.md | 0 .../other-system-functions-1.md | 0 .../other-system-functions-2.md | 0 .../other-system-functions.md | 0 .../prompt-message-function.md | 0 .../range-functions-and-operators.md | 0 .../security-functions.md | 0 .../sequence-functions.md | 0 .../set-returning-functions.md | 0 .../statistics-information-functions-1.md | 0 .../statistics-information-functions-2.md | 0 .../statistics-information-functions-3.md | 0 .../statistics-information-functions.md | 0 .../access-privilege-inquiry-function.md | 0 .../comment-information-functions.md | 0 .../guc-value-inquiry-functions.md | 0 .../other-function.md | 0 .../schema-visibility-inquiry-functions.md | 0 .../session-information-functions.md | 0 .../system-catalog-information-functions.md | 0 .../system-information-functions.md | 0 .../transaction-ids-and-snapshots.md | 0 .../advisory-lock-functions.md | 0 ...ackup-and-restoration-control-functions.md | 0 .../configuration-settings-functions.md | 0 .../database-object-functions.md | 0 .../logical-replication-functions.md | 0 .../other-functions.md | 0 .../row-store-compression-system-functions.md | 0 .../segment-page-storage-functions.md | 0 .../server-signal-functions.md | 0 .../snapshot-synchronization-functions.md | 0 .../system-management-functions.md | 0 .../undo-system-functions.md | 0 .../universal-file-access-functions.md | 0 .../text-search-functions-and-operators.md | 0 .../trigger-functions.md | 0 .../type-conversion-functions-1.md | 0 .../type-conversion-functions-2.md | 0 .../type-conversion-functions.md | 0 .../window-functions.md | 0 .../functions-and-operators/xml-functions.md | 0 .../guc-parameters/AI-features.md | 0 .../guc-parameters/DCF-parameters-settings.md | 0 .../guc-parameters/HyperLogLog.md | 0 .../guc-parameters/MogDB-transaction.md | 0 .../guc-parameters/alarm-detection.md | 0 .../guc-parameters/appendix.md | 0 .../guc-parameters/auditing/audit-switch.md | 0 .../guc-parameters/auditing/auditing.md | 0 .../auditing/operation-audit.md | 0 .../auditing/user-and-permission-audit.md | 0 .../guc-parameters/automatic-vacuuming.md | 0 .../guc-parameters/backend-compression.md | 0 .../backup-and-restoration-parameter.md | 0 .../guc-parameters/cm-parameters.md | 0 .../communication-library-parameters.md | 0 .../connection-and-authentication.md | 0 .../connection-settings.md | 0 .../security-and-authentication.md | 0 .../connection-pool-parameters.md | 0 .../default-settings-of-client-connection.md | 0 .../other-default-parameters.md | 0 .../statement-behavior.md | 0 .../zone-and-formatting.md | 0 .../guc-parameters/developer-options.md | 0 .../error-reporting-and-logging.md | 0 .../logging-content.md | 0 .../logging-destination.md | 0 .../logging-time.md | 0 .../using-csv-log-output.md | 0 .../guc-parameters/fault-tolerance.md | 0 .../guc-parameters/file-location.md | 0 .../guc-parameters/flashback.md | 0 .../global-syscache-parameters.md | 0 .../guc-parameters/global-temporary-table.md | 0 .../guc-parameters/guc-parameter-list.md | 0 .../guc-parameters/guc-parameter-usage.md | 0 .../guc-user-defined-functions.md | 0 .../ha-replication/ha-replication.md | 0 .../ha-replication/primary-server.md | 0 .../ha-replication/sending-server.md | 0 .../ha-replication/standby-server.md | 0 .../guc-parameters/load-management.md | 0 .../guc-parameters/lock-management.md | 0 .../miscellaneous-parameters.md | 0 .../reference-guide/guc-parameters/mot.md | 0 ...o-efficient-data-compression-algorithms.md | 0 .../query-planning/genetic-query-optimizer.md | 0 .../optimizer-cost-constants.md | 0 .../optimizer-method-configuration.md | 0 .../query-planning/other-optimizer-options.md | 0 .../query-planning/query-planning.md | 0 .../reference-guide/guc-parameters/query.md | 0 .../reference-guide-guc-parameters.md | 0 ...on-parameters-of-two-database-instances.md | 0 .../guc-parameters/reserved-parameters.md | 0 .../asynchronous-io-operations.md | 0 .../resource-consumption/background-writer.md | 0 .../cost-based-vacuum-delay.md | 0 .../resource-consumption/disk-space.md | 0 .../kernel-resource-usage.md | 0 .../resource-consumption/memory.md | 0 .../resource-consumption.md | 0 .../guc-parameters/rollback-parameters.md | 0 .../guc-parameters/scheduled-task.md | 0 .../guc-parameters/security-configuration.md | 0 .../performance-statistics.md | 0 .../query-and-index-statistics-collector.md | 0 .../statistics-during-the-database-running.md | 0 .../system-performance-snapshot.md | 0 .../guc-parameters/thread-pool.md | 0 .../guc-parameters/upgrade-parameters.md | 0 .../compatibility-with-earlier-versions.md | 0 .../platform-and-client-compatibility.md | 0 .../version-and-platform-compatibility.md | 0 .../guc-parameters/wait-events.md | 0 .../write-ahead-log/archiving.md | 0 .../write-ahead-log/checkpoints.md | 0 .../write-ahead-log/log-replay.md | 0 .../write-ahead-log/settings.md | 0 .../write-ahead-log/write-ahead-log.md | 0 ...-parameters-supported-by-standby-server.md | 0 .../reference-guide/reference-guide.md | 0 .../schema/DB4AI-schema/DB4AI-schema.md | 0 .../DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md | 0 .../DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md | 0 .../DB4AI.CREATE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI.MANAGE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md | 0 .../DB4AI.PREPARE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md | 0 .../DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md | 0 .../DB4AI.PURGE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md | 0 .../schema/DB4AI-schema/DB4AI.SNAPSHOT.md | 0 .../schema/DBE_PERF/DBE_PERF.md | 0 .../schema/DBE_PERF/cache-io/Cache-IO.md | 0 .../cache-io/GLOBAL_STATIO_ALL_INDEXES.md | 0 .../cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md | 0 .../cache-io/GLOBAL_STATIO_ALL_TABLES.md | 0 .../cache-io/GLOBAL_STATIO_SYS_INDEXES.md | 0 .../cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md | 0 .../cache-io/GLOBAL_STATIO_SYS_TABLES.md | 0 .../cache-io/GLOBAL_STATIO_USER_INDEXES.md | 0 .../cache-io/GLOBAL_STATIO_USER_SEQUENCES.md | 0 .../cache-io/GLOBAL_STATIO_USER_TABLES.md | 0 .../DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md | 0 .../cache-io/GLOBAL_STAT_SESSION_CU.md | 0 .../DBE_PERF/cache-io/STATIO_ALL_INDEXES.md | 0 .../DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md | 0 .../DBE_PERF/cache-io/STATIO_ALL_TABLES.md | 0 .../DBE_PERF/cache-io/STATIO_SYS_INDEXES.md | 0 .../DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md | 0 .../DBE_PERF/cache-io/STATIO_SYS_TABLES.md | 0 .../DBE_PERF/cache-io/STATIO_USER_INDEXES.md | 0 .../cache-io/STATIO_USER_SEQUENCES.md | 0 .../DBE_PERF/cache-io/STATIO_USER_TABLES.md | 0 .../cache-io/SUMMARY_STATIO_ALL_INDEXES.md | 0 .../cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md | 0 .../cache-io/SUMMARY_STATIO_ALL_TABLES.md | 0 .../cache-io/SUMMARY_STATIO_SYS_INDEXES.md | 0 .../cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md | 0 .../cache-io/SUMMARY_STATIO_SYS_TABLES.md | 0 .../cache-io/SUMMARY_STATIO_USER_INDEXES.md | 0 .../cache-io/SUMMARY_STATIO_USER_SEQUENCES.md | 0 .../cache-io/SUMMARY_STATIO_USER_TABLES.md | 0 .../DBE_PERF/configuration/CONFIG_SETTINGS.md | 0 .../configuration/GLOBAL_CONFIG_SETTINGS.md | 0 .../DBE_PERF/configuration/configuration.md | 0 .../schema/DBE_PERF/file/FILE_IOSTAT.md | 0 .../schema/DBE_PERF/file/FILE_REDO_IOSTAT.md | 0 .../DBE_PERF/file/GLOBAL_FILE_IOSTAT.md | 0 .../DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md | 0 .../schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md | 0 .../schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md | 0 .../DBE_PERF/file/SUMMARY_FILE_IOSTAT.md | 0 .../DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md | 0 .../DBE_PERF/file/SUMMARY_REL_IOSTAT.md | 0 .../schema/DBE_PERF/file/file.md | 0 .../GLOBAL_PLANCACHE_CLEAN.md | 0 .../GLOBAL_PLANCACHE_STATUS.md | 0 .../global-plancache/global-plancache.md | 0 .../DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md | 0 .../schema/DBE_PERF/instance/INSTANCE_TIME.md | 0 .../schema/DBE_PERF/instance/instance.md | 0 .../schema/DBE_PERF/lock/GLOBAL_LOCKS.md | 0 .../schema/DBE_PERF/lock/LOCKS.md | 0 .../schema/DBE_PERF/lock/lock.md | 0 .../memory/GLOBAL_MEMORY_NODE_DETAIL.md | 0 .../memory/GLOBAL_SHARED_MEMORY_DETAIL.md | 0 .../memory/GS_SHARED_MEMORY_DETAIL.md | 0 .../DBE_PERF/memory/MEMORY_NODE_DETAIL.md | 0 .../schema/DBE_PERF/memory/memory-schema.md | 0 .../object/GLOBAL_STAT_ALL_INDEXES.md | 0 .../DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md | 0 .../DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md | 0 .../DBE_PERF/object/GLOBAL_STAT_DATABASE.md | 0 .../object/GLOBAL_STAT_DATABASE_CONFLICTS.md | 0 .../object/GLOBAL_STAT_SYS_INDEXES.md | 0 .../DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md | 0 .../object/GLOBAL_STAT_USER_FUNCTIONS.md | 0 .../object/GLOBAL_STAT_USER_INDEXES.md | 0 .../object/GLOBAL_STAT_USER_TABLES.md | 0 .../object/GLOBAL_STAT_XACT_ALL_TABLES.md | 0 .../object/GLOBAL_STAT_XACT_SYS_TABLES.md | 0 .../object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md | 0 .../object/GLOBAL_STAT_XACT_USER_TABLES.md | 0 .../DBE_PERF/object/STAT_ALL_INDEXES.md | 0 .../schema/DBE_PERF/object/STAT_ALL_TABLES.md | 0 .../schema/DBE_PERF/object/STAT_BAD_BLOCK.md | 0 .../schema/DBE_PERF/object/STAT_DATABASE.md | 0 .../object/STAT_DATABASE_CONFLICTS.md | 0 .../DBE_PERF/object/STAT_SYS_INDEXES.md | 0 .../schema/DBE_PERF/object/STAT_SYS_TABLES.md | 0 .../DBE_PERF/object/STAT_USER_FUNCTIONS.md | 0 .../DBE_PERF/object/STAT_USER_INDEXES.md | 0 .../DBE_PERF/object/STAT_USER_TABLES.md | 0 .../DBE_PERF/object/STAT_XACT_ALL_TABLES.md | 0 .../DBE_PERF/object/STAT_XACT_SYS_TABLES.md | 0 .../object/STAT_XACT_USER_FUNCTIONS.md | 0 .../DBE_PERF/object/STAT_XACT_USER_TABLES.md | 0 .../object/SUMMARY_STAT_ALL_INDEXES.md | 0 .../object/SUMMARY_STAT_ALL_TABLES.md | 0 .../DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md | 0 .../DBE_PERF/object/SUMMARY_STAT_DATABASE.md | 0 .../object/SUMMARY_STAT_DATABASE_CONFLICTS.md | 0 .../object/SUMMARY_STAT_SYS_INDEXES.md | 0 .../object/SUMMARY_STAT_SYS_TABLES.md | 0 .../object/SUMMARY_STAT_USER_FUNCTIONS.md | 0 .../object/SUMMARY_STAT_USER_INDEXES.md | 0 .../object/SUMMARY_STAT_USER_TABLES.md | 0 .../object/SUMMARY_STAT_XACT_ALL_TABLES.md | 0 .../object/SUMMARY_STAT_XACT_SYS_TABLES.md | 0 .../SUMMARY_STAT_XACT_USER_FUNCTIONS.md | 0 .../object/SUMMARY_STAT_XACT_USER_TABLES.md | 0 .../schema/DBE_PERF/object/object-schema.md | 0 .../operator/GLOBAL_OPERATOR_HISTORY.md | 0 .../operator/GLOBAL_OPERATOR_HISTORY_TABLE.md | 0 .../operator/GLOBAL_OPERATOR_RUNTIME.md | 0 .../DBE_PERF/operator/OPERATOR_HISTORY.md | 0 .../operator/OPERATOR_HISTORY_TABLE.md | 0 .../DBE_PERF/operator/OPERATOR_RUNTIME.md | 0 .../DBE_PERF/operator/operator-schema.md | 0 .../schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md | 0 .../schema/DBE_PERF/os/GLOBAL_OS_THREADS.md | 0 .../schema/DBE_PERF/os/OS_RUNTIME.md | 0 .../schema/DBE_PERF/os/OS_THREADS.md | 0 .../schema/DBE_PERF/os/os-schema.md | 0 .../query/GLOBAL_SLOW_QUERY_HISTORY.md | 0 .../DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md | 0 .../query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md | 0 .../GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md | 0 .../query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md | 0 .../DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md | 0 .../DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md | 0 .../DBE_PERF/query/GS_SLOW_QUERY_INFO.md | 0 .../schema/DBE_PERF/query/STATEMENT.md | 0 .../query/STATEMENT_COMPLEX_HISTORY.md | 0 .../query/STATEMENT_COMPLEX_HISTORY_TABLE.md | 0 .../query/STATEMENT_COMPLEX_RUNTIME.md | 0 .../schema/DBE_PERF/query/STATEMENT_COUNT.md | 0 .../DBE_PERF/query/STATEMENT_HISTORY_query.md | 0 .../STATEMENT_RESPONSETIME_PERCENTILE.md | 0 .../STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md | 0 .../DBE_PERF/query/SUMMARY_STATEMENT.md | 0 .../DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md | 0 .../schema/DBE_PERF/query/query-schema.md | 0 .../schema/DBE_PERF/rto/RTO-RPO.md | 0 .../schema/DBE_PERF/rto/global_rto_status.md | 0 .../global_streaming_hadr_rto_and_rpo_stat.md | 0 .../rto/gs_hadr_local_rto_and_rpo_stat.md | 0 .../session-thread/GLOBAL_SESSION_MEMORY.md | 0 .../GLOBAL_SESSION_MEMORY_DETAIL.md | 0 .../session-thread/GLOBAL_SESSION_STAT.md | 0 .../GLOBAL_SESSION_STAT_ACTIVITY.md | 0 .../session-thread/GLOBAL_SESSION_TIME.md | 0 .../GLOBAL_THREADPOOL_STATUS.md | 0 .../GLOBAL_THREAD_WAIT_STATUS.md | 0 .../session-thread/LOCAL_ACTIVE_SESSION.md | 0 .../session-thread/LOCAL_THREADPOOL_STATUS.md | 0 .../session-thread/SESSION_CPU_RUNTIME.md | 0 .../DBE_PERF/session-thread/SESSION_MEMORY.md | 0 .../session-thread/SESSION_MEMORY_DETAIL.md | 0 .../session-thread/SESSION_MEMORY_RUNTIME.md | 0 .../DBE_PERF/session-thread/SESSION_STAT.md | 0 .../session-thread/SESSION_STAT_ACTIVITY.md | 0 .../DBE_PERF/session-thread/SESSION_TIME.md | 0 .../STATEMENT_IOSTAT_COMPLEX_RUNTIME.md | 0 .../session-thread/THREAD_WAIT_STATUS.md | 0 .../DBE_PERF/session-thread/session-thread.md | 0 .../GLOBAL_TRANSACTIONS_PREPARED_XACTS.md | 0 .../GLOBAL_TRANSACTIONS_RUNNING_XACTS.md | 0 .../SUMMARY_TRANSACTIONS_PREPARED_XACTS.md | 0 .../SUMMARY_TRANSACTIONS_RUNNING_XACTS.md | 0 .../TRANSACTIONS_PREPARED_XACTS.md | 0 .../transaction/TRANSACTIONS_RUNNING_XACTS.md | 0 .../transaction/transaction-schema.md | 0 .../schema/DBE_PERF/utility/BGWRITER_STAT.md | 0 .../DBE_PERF/utility/CLASS_VITAL_INFO.md | 0 .../DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md | 0 .../utility/GLOBAL_CANDIDATE_STATUS.md | 0 .../DBE_PERF/utility/GLOBAL_CKPT_STATUS.md | 0 .../utility/GLOBAL_DOUBLE_WRITE_STATUS.md | 0 .../utility/GLOBAL_GET_BGWRITER_STATUS.md | 0 .../utility/GLOBAL_PAGEWRITER_STATUS.md | 0 .../utility/GLOBAL_RECORD_RESET_TIME.md | 0 .../utility/GLOBAL_RECOVERY_STATUS.md | 0 .../DBE_PERF/utility/GLOBAL_REDO_STATUS.md | 0 .../utility/GLOBAL_REPLICATION_SLOTS.md | 0 .../utility/GLOBAL_REPLICATION_STAT.md | 0 .../utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md | 0 .../DBE_PERF/utility/REPLICATION_SLOTS.md | 0 .../DBE_PERF/utility/REPLICATION_STAT.md | 0 .../DBE_PERF/utility/SUMMARY_USER_LOGIN.md | 0 .../schema/DBE_PERF/utility/USER_LOGIN.md | 0 .../schema/DBE_PERF/utility/utility.md | 0 .../wait-events/GLOBAL_WAIT_EVENTS.md | 0 .../DBE_PERF/wait-events/WAIT_EVENTS.md | 0 .../wait-events/dbe-perf-wait-events.md | 0 .../WLM_USER_RESOURCE_CONFIG.md | 0 .../WLM_USER_RESOURCE_RUNTIME.md | 0 .../workload-manager/workload-manager.md | 0 .../workload/GLOBAL_USER_TRANSACTION.md | 0 .../workload/GLOBAL_WORKLOAD_TRANSACTION.md | 0 .../workload/SUMMARY_WORKLOAD_SQL_COUNT.md | 0 .../SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md | 0 .../workload/SUMMARY_WORKLOAD_TRANSACTION.md | 0 .../DBE_PERF/workload/USER_TRANSACTION.md | 0 .../DBE_PERF/workload/WORKLOAD_SQL_COUNT.md | 0 .../workload/WORKLOAD_SQL_ELAPSE_TIME.md | 0 .../DBE_PERF/workload/WORKLOAD_TRANSACTION.md | 0 .../DBE_PERF/workload/workload-schema.md | 0 .../DBE_PLDEBUGGER-schema.md | 0 .../DBE_PLDEBUGGER.abort.md | 0 .../DBE_PLDEBUGGER.add_breakpoint.md | 0 .../DBE_PLDEBUGGER.attach.md | 0 .../DBE_PLDEBUGGER.backtrace.md | 0 .../DBE_PLDEBUGGER.continue.md | 0 .../DBE_PLDEBUGGER.delete_breakpoint.md | 0 .../DBE_PLDEBUGGER.disable_breakpoint.md | 0 .../DBE_PLDEBUGGER.enable_breakpoint.md | 0 .../DBE_PLDEBUGGER.finish.md | 0 .../DBE_PLDEBUGGER.info_breakpoints.md | 0 .../DBE_PLDEBUGGER.info_code.md | 0 .../DBE_PLDEBUGGER.info_locals.md | 0 .../DBE_PLDEBUGGER.local_debug_server_info.md | 0 .../DBE_PLDEBUGGER.next.md | 0 .../DBE_PLDEBUGGER.print_var.md | 0 .../DBE_PLDEBUGGER.set_var.md | 0 .../DBE_PLDEBUGGER.step.md | 0 .../DBE_PLDEBUGGER.turn_off.md | 0 .../DBE_PLDEBUGGER.turn_on.md | 0 .../DBE_PLDEVELOPER.gs_errors.md | 0 .../DBE_PLDEVELOPER.gs_source.md | 0 .../schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md | 0 .../DBE_SQL_UTIL-Schema.md | 0 .../DBE_SQL_UTIL.create_abort_sql_patch.md | 0 .../DBE_SQL_UTIL.create_hint_sql_patch.md | 0 .../DBE_SQL_UTIL.disable_sql_patch.md | 0 .../DBE_SQL_UTIL.drop_sql_patch.md | 0 .../DBE_SQL_UTIL.enable_sql_patch.md | 0 .../DBE_SQL_UTIL.show_sql_patch.md | 0 .../INFORMATION_SCHEMA_CATALOG_NAME.md | 0 .../_PG_FOREIGN_DATA_WRAPPERS.md | 0 .../information-schema/_PG_FOREIGN_SERVERS.md | 0 .../information-schema/_PG_FOREIGN_TABLES.md | 0 .../_PG_FOREIGN_TABLE_COLUMNS.md | 0 .../information-schema/_PG_USER_MAPPINGS.md | 0 .../information-schema/information-schema.md | 0 .../reference-guide/schema/schema.md | 0 .../reference-guide/sql-reference/alias.md | 0 .../sql-reference/appendix/appendix.md | 0 .../appendix/extended-functions.md | 0 .../sql-reference/appendix/extended-syntax.md | 0 .../gin-indexes/gin-indexes-introduction.md | 0 .../appendix/gin-indexes/gin-indexes.md | 0 .../gin-indexes/gin-tips-and-tricks.md | 0 .../appendix/gin-indexes/implementation.md | 0 .../appendix/gin-indexes/scalability.md | 0 .../sql-reference/constant-and-macro.md | 0 .../sql-reference/controlling-transactions.md | 0 .../sql-reference/dcl-syntax-overview.md | 0 .../sql-reference/ddl-syntax-overview.md | 0 .../sql-reference/dml-syntax-overview.md | 0 .../expressions/array-expressions.md | 0 .../expressions/condition-expressions.md | 0 .../sql-reference/expressions/expressions.md | 0 .../expressions/row-expressions.md | 0 .../expressions/simple-expressions.md | 0 .../expressions/subquery-expressions.md | 0 .../additional-features.md | 0 .../gathering-document-statistics.md | 0 .../manipulating-queries.md | 0 .../manipulating-tsvector.md | 0 .../additional-features/rewriting-queries.md | 0 .../configuration-examples.md | 0 .../controlling-text-search.md | 0 .../highlighting-results.md | 0 .../parsing-documents.md | 0 .../parsing-queries.md | 0 .../ranking-search-results.md | 0 .../dictionaries/dictionaries-overview.md | 0 .../dictionaries/dictionaries.md | 0 .../dictionaries/ispell-dictionary.md | 0 .../dictionaries/simple-dictionary.md | 0 .../dictionaries/snowball-dictionary.md | 0 .../dictionaries/stop-words.md | 0 .../dictionaries/synonym-dictionary.md | 0 .../dictionaries/thesaurus-dictionary.md | 0 .../full-text-search/full-text-search.md | 0 .../introduction/basic-text-matching.md | 0 .../introduction/configurations.md | 0 .../introduction/full-text-retrieval.md | 0 .../full-text-search-introduction.md | 0 .../introduction/what-is-a-document.md | 0 .../full-text-search/limitations.md | 0 .../sql-reference/full-text-search/parser.md | 0 .../constraints-on-index-use.md | 0 .../tables-and-indexes/creating-an-index.md | 0 .../tables-and-indexes/searching-a-table.md | 0 .../tables-and-indexes/tables-and-indexes.md | 0 .../testing-a-configuration.md | 0 .../testing-a-dictionary.md | 0 .../testing-a-parser.md | 0 .../testing-and-debugging-text-search.md | 0 .../sql-reference/keywords/keywords-1.md | 0 .../sql-reference/keywords/keywords-2.md | 0 .../sql-reference/keywords/keywords.md | 0 .../sql-reference/mogdb-sql.md | 0 .../sql-reference/ordinary-table.md | 0 .../sql-reference/partition-table.md | 0 .../sql-reference-anonymous-block.md | 0 .../sql-reference/sql-reference-contraints.md | 0 .../sql-reference/sql-reference-cursor.md | 0 .../sql-reference/sql-reference-index.md | 0 .../sql-reference/sql-reference-llvm.md | 0 .../sql-reference/sql-reference-lock.md | 0 .../sql-reference/sql-reference-trigger.md | 0 .../sql-reference/sql-reference.md | 0 .../sql-reference/sql-syntax-format.md | 0 .../sql-reference/sub-query.md | 0 .../sql-reference/system-operation.md | 0 .../transaction/sql-reference-transaction.md | 0 .../transaction/transaction-control.md | 0 .../transaction/transaction-management.md | 0 .../sql-reference/type-base-value.md | 0 .../type-conversion/functions.md | 0 .../type-conversion/operators.md | 0 .../type-conversion-overview.md | 0 .../type-conversion/type-conversion.md | 0 .../union-case-and-related-constructs.md | 0 .../type-conversion/value-storage.md | 0 .../reference-guide/sql-syntax/ABORT.md | 0 .../sql-syntax/ALTER-AGGREGATE.md | 0 .../sql-syntax/ALTER-AUDIT-POLICY.md | 0 .../sql-syntax/ALTER-DATA-SOURCE.md | 0 .../sql-syntax/ALTER-DATABASE.md | 0 .../sql-syntax/ALTER-DEFAULT-PRIVILEGES.md | 0 .../sql-syntax/ALTER-DIRECTORY.md | 0 .../sql-syntax/ALTER-EVENT-TRIGGER.md | 0 .../reference-guide/sql-syntax/ALTER-EVENT.md | 0 .../sql-syntax/ALTER-EXTENSION.md | 0 .../sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md | 0 .../sql-syntax/ALTER-FOREIGN-TABLE.md | 0 .../sql-syntax/ALTER-FUNCTION.md | 0 .../sql-syntax/ALTER-GLOBAL-CONFIGURATION.md | 0 .../reference-guide/sql-syntax/ALTER-GROUP.md | 0 .../reference-guide/sql-syntax/ALTER-INDEX.md | 0 .../sql-syntax/ALTER-LANGUAGE.md | 0 .../sql-syntax/ALTER-LARGE-OBJECT.md | 0 .../sql-syntax/ALTER-MASKING-POLICY.md | 0 .../sql-syntax/ALTER-MATERIALIZED-VIEW.md | 0 .../sql-syntax/ALTER-OPERATOR.md | 0 .../sql-syntax/ALTER-PACKAGE.md | 0 .../sql-syntax/ALTER-PROCEDURE.md | 0 .../sql-syntax/ALTER-PUBLICATION.md | 0 .../sql-syntax/ALTER-RESOURCE-LABEL.md | 0 .../sql-syntax/ALTER-RESOURCE-POOL.md | 0 .../reference-guide/sql-syntax/ALTER-ROLE.md | 0 .../ALTER-ROW-LEVEL-SECURITY-POLICY.md | 0 .../reference-guide/sql-syntax/ALTER-RULE.md | 0 .../sql-syntax/ALTER-SCHEMA.md | 0 .../sql-syntax/ALTER-SEQUENCE.md | 0 .../sql-syntax/ALTER-SERVER.md | 0 .../sql-syntax/ALTER-SESSION.md | 0 .../sql-syntax/ALTER-SUBSCRIPTION.md | 0 .../sql-syntax/ALTER-SYNONYM.md | 0 .../sql-syntax/ALTER-SYSTEM-KILL-SESSION.md | 0 .../sql-syntax/ALTER-SYSTEM-SET.md | 0 .../sql-syntax/ALTER-TABLE-PARTITION.md | 0 .../sql-syntax/ALTER-TABLE-SUBPARTITION.md | 0 .../reference-guide/sql-syntax/ALTER-TABLE.md | 0 .../sql-syntax/ALTER-TABLESPACE.md | 0 .../ALTER-TEXT-SEARCH-CONFIGURATION.md | 0 .../ALTER-TEXT-SEARCH-DICTIONARY.md | 0 .../sql-syntax/ALTER-TRIGGER.md | 0 .../reference-guide/sql-syntax/ALTER-TYPE.md | 0 .../sql-syntax/ALTER-USER-MAPPING.md | 0 .../reference-guide/sql-syntax/ALTER-USER.md | 0 .../reference-guide/sql-syntax/ALTER-VIEW.md | 0 .../sql-syntax/ANALYZE-ANALYSE.md | 0 .../reference-guide/sql-syntax/BEGIN.md | 0 .../reference-guide/sql-syntax/CALL.md | 0 .../reference-guide/sql-syntax/CHECKPOINT.md | 0 .../sql-syntax/CLEAN-CONNECTION.md | 0 .../reference-guide/sql-syntax/CLOSE.md | 0 .../reference-guide/sql-syntax/CLUSTER.md | 0 .../reference-guide/sql-syntax/COMMENT.md | 0 .../reference-guide/sql-syntax/COMMIT-END.md | 0 .../sql-syntax/COMMIT-PREPARED.md | 0 .../reference-guide/sql-syntax/CONNECT-BY.md | 0 .../reference-guide/sql-syntax/COPY.md | 0 .../sql-syntax/CREATE-AGGREGATE.md | 0 .../sql-syntax/CREATE-AUDIT-POLICY.md | 0 .../reference-guide/sql-syntax/CREATE-CAST.md | 0 .../sql-syntax/CREATE-CLIENT-MASTER-KEY.md | 0 .../CREATE-COLUMN-ENCRYPTION-KEY.md | 0 .../sql-syntax/CREATE-DATA-SOURCE.md | 0 .../sql-syntax/CREATE-DATABASE.md | 0 .../sql-syntax/CREATE-DIRECTORY.md | 0 .../sql-syntax/CREATE-EVENT-TRIGGER.md | 0 .../sql-syntax/CREATE-EVENT.md | 0 .../sql-syntax/CREATE-EXTENSION.md | 0 .../sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md | 0 .../sql-syntax/CREATE-FOREIGN-TABLE.md | 0 .../sql-syntax/CREATE-FUNCTION.md | 0 .../sql-syntax/CREATE-GROUP.md | 0 .../CREATE-INCREMENTAL-MATERIALIZED-VIEW.md | 0 .../sql-syntax/CREATE-INDEX.md | 0 .../sql-syntax/CREATE-LANGUAGE.md | 0 .../sql-syntax/CREATE-MASKING-POLICY.md | 0 .../sql-syntax/CREATE-MATERIALIZED-VIEW.md | 0 .../sql-syntax/CREATE-MODEL.md | 0 .../sql-syntax/CREATE-OPERATOR.md | 0 .../sql-syntax/CREATE-PACKAGE.md | 0 .../sql-syntax/CREATE-PROCEDURE.md | 0 .../sql-syntax/CREATE-PUBLICATION.md | 0 .../sql-syntax/CREATE-RESOURCE-LABEL.md | 0 .../sql-syntax/CREATE-RESOURCE-POOL.md | 0 .../reference-guide/sql-syntax/CREATE-ROLE.md | 0 .../CREATE-ROW-LEVEL-SECURITY-POLICY.md | 0 .../reference-guide/sql-syntax/CREATE-RULE.md | 0 .../sql-syntax/CREATE-SCHEMA.md | 0 .../sql-syntax/CREATE-SEQUENCE.md | 0 .../sql-syntax/CREATE-SERVER.md | 0 .../sql-syntax/CREATE-SUBSCRIPTION.md | 0 .../sql-syntax/CREATE-SYNONYM.md | 0 .../sql-syntax/CREATE-TABLE-AS.md | 0 .../sql-syntax/CREATE-TABLE-PARTITION.md | 0 .../sql-syntax/CREATE-TABLE-SUBPARTITION.md | 0 .../sql-syntax/CREATE-TABLE.md | 0 .../sql-syntax/CREATE-TABLESPACE.md | 0 .../CREATE-TEXT-SEARCH-CONFIGURATION.md | 0 .../CREATE-TEXT-SEARCH-DICTIONARY.md | 0 .../sql-syntax/CREATE-TRIGGER.md | 0 .../reference-guide/sql-syntax/CREATE-TYPE.md | 0 .../sql-syntax/CREATE-USER-MAPPING.md | 0 .../reference-guide/sql-syntax/CREATE-USER.md | 0 .../reference-guide/sql-syntax/CREATE-VIEW.md | 0 .../CREATE-WEAK-PASSWORD-DICTIONARY.md | 0 .../reference-guide/sql-syntax/CURSOR.md | 0 .../reference-guide/sql-syntax/DEALLOCATE.md | 0 .../reference-guide/sql-syntax/DECLARE.md | 0 .../reference-guide/sql-syntax/DELETE.md | 0 .../reference-guide/sql-syntax/DELIMITER.md | 0 .../reference-guide/sql-syntax/DO.md | 0 .../sql-syntax/DROP-AGGREGATE.md | 0 .../sql-syntax/DROP-AUDIT-POLICY.md | 0 .../reference-guide/sql-syntax/DROP-CAST.md | 0 .../sql-syntax/DROP-CLIENT-MASTER-KEY.md | 0 .../sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md | 0 .../sql-syntax/DROP-DATA-SOURCE.md | 0 .../sql-syntax/DROP-DATABASE.md | 0 .../sql-syntax/DROP-DIRECTORY.md | 0 .../sql-syntax/DROP-EVENT-TRIGGER.md | 0 .../reference-guide/sql-syntax/DROP-EVENT.md | 0 .../sql-syntax/DROP-EXTENSION.md | 0 .../sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md | 0 .../sql-syntax/DROP-FOREIGN-TABLE.md | 0 .../sql-syntax/DROP-FUNCTION.md | 0 .../sql-syntax/DROP-GLOBAL-CONFIGURATION.md | 0 .../reference-guide/sql-syntax/DROP-GROUP.md | 0 .../reference-guide/sql-syntax/DROP-INDEX.md | 0 .../sql-syntax/DROP-LANGUAGE.md | 0 .../sql-syntax/DROP-MASKING-POLICY.md | 0 .../sql-syntax/DROP-MATERIALIZED-VIEW.md | 0 .../reference-guide/sql-syntax/DROP-MODEL.md | 0 .../sql-syntax/DROP-OPERATOR.md | 0 .../reference-guide/sql-syntax/DROP-OWNED.md | 0 .../sql-syntax/DROP-PACKAGE.md | 0 .../sql-syntax/DROP-PROCEDURE.md | 0 .../sql-syntax/DROP-PUBLICATION.md | 0 .../sql-syntax/DROP-RESOURCE-LABEL.md | 0 .../sql-syntax/DROP-RESOURCE-POOL.md | 0 .../reference-guide/sql-syntax/DROP-ROLE.md | 0 .../DROP-ROW-LEVEL-SECURITY-POLICY.md | 0 .../reference-guide/sql-syntax/DROP-RULE.md | 0 .../reference-guide/sql-syntax/DROP-SCHEMA.md | 0 .../sql-syntax/DROP-SEQUENCE.md | 0 .../reference-guide/sql-syntax/DROP-SERVER.md | 0 .../sql-syntax/DROP-SUBSCRIPTION.md | 0 .../sql-syntax/DROP-SYNONYM.md | 0 .../reference-guide/sql-syntax/DROP-TABLE.md | 0 .../sql-syntax/DROP-TABLESPACE.md | 0 .../DROP-TEXT-SEARCH-CONFIGURATION.md | 0 .../sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md | 0 .../sql-syntax/DROP-TRIGGER.md | 0 .../reference-guide/sql-syntax/DROP-TYPE.md | 0 .../sql-syntax/DROP-USER-MAPPING.md | 0 .../reference-guide/sql-syntax/DROP-USER.md | 0 .../reference-guide/sql-syntax/DROP-VIEW.md | 0 .../DROP-WEAK-PASSWORD-DICTIONARY.md | 0 .../sql-syntax/EXECUTE-DIRECT.md | 0 .../reference-guide/sql-syntax/EXECUTE.md | 0 .../sql-syntax/EXPLAIN-PLAN.md | 0 .../reference-guide/sql-syntax/EXPLAIN.md | 0 .../reference-guide/sql-syntax/FETCH.md | 0 .../reference-guide/sql-syntax/GRANT.md | 0 .../reference-guide/sql-syntax/INSERT.md | 0 .../reference-guide/sql-syntax/LOCK.md | 0 .../reference-guide/sql-syntax/MERGE-INTO.md | 0 .../reference-guide/sql-syntax/MOVE.md | 0 .../reference-guide/sql-syntax/PREDICT-BY.md | 0 .../sql-syntax/PREPARE-TRANSACTION.md | 0 .../reference-guide/sql-syntax/PREPARE.md | 0 .../reference-guide/sql-syntax/PURGE.md | 0 .../sql-syntax/REASSIGN-OWNED.md | 0 .../REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md | 0 .../sql-syntax/REFRESH-MATERIALIZED-VIEW.md | 0 .../reference-guide/sql-syntax/REINDEX.md | 0 .../sql-syntax/RELEASE-SAVEPOINT.md | 0 .../reference-guide/sql-syntax/RESET.md | 0 .../reference-guide/sql-syntax/REVOKE.md | 0 .../sql-syntax/ROLLBACK-PREPARED.md | 0 .../sql-syntax/ROLLBACK-TO-SAVEPOINT.md | 0 .../reference-guide/sql-syntax/ROLLBACK.md | 0 .../reference-guide/sql-syntax/SAVEPOINT.md | 0 .../reference-guide/sql-syntax/SELECT-INTO.md | 0 .../reference-guide/sql-syntax/SELECT.md | 0 .../sql-syntax/SET-CONSTRAINTS.md | 0 .../reference-guide/sql-syntax/SET-ROLE.md | 0 .../sql-syntax/SET-SESSION-AUTHORIZATION.md | 0 .../sql-syntax/SET-TRANSACTION.md | 0 .../reference-guide/sql-syntax/SET.md | 0 .../reference-guide/sql-syntax/SHOW-EVENTS.md | 0 .../reference-guide/sql-syntax/SHOW.md | 0 .../reference-guide/sql-syntax/SHRINK.md | 0 .../reference-guide/sql-syntax/SHUTDOWN.md | 0 .../reference-guide/sql-syntax/SNAPSHOT.md | 0 .../sql-syntax/START-TRANSACTION.md | 0 .../sql-syntax/TIMECAPSULE-TABLE.md | 0 .../reference-guide/sql-syntax/TRUNCATE.md | 0 .../reference-guide/sql-syntax/UPDATE.md | 0 .../reference-guide/sql-syntax/VACUUM.md | 0 .../reference-guide/sql-syntax/VALUES.md | 0 .../reference-guide/sql-syntax/sql-syntax.md | 0 .../supported-data-types/HLL.md | 0 .../supported-data-types/binary-data-types.md | 0 .../supported-data-types/bit-string-types.md | 0 .../boolean-data-types.md | 0 .../character-data-types.md | 0 .../data-type-used-by-the-ledger-database.md | 0 ...-types-supported-by-column-store-tables.md | 0 .../supported-data-types/date-time-types.md | 0 .../supported-data-types/geometric.md | 0 .../supported-data-types/json-types.md | 0 .../supported-data-types/monetary.md | 0 .../supported-data-types/network-address.md | 0 .../numeric-data-types.md | 0 .../object-identifier-types.md | 0 .../supported-data-types/pseudo-types.md | 0 .../supported-data-types/range.md | 0 .../supported-data-types/set-type.md | 0 .../supported-data-types.md | 0 .../supported-data-types/text-search-types.md | 0 .../supported-data-types/uuid-type.md | 0 .../supported-data-types/xml-type.md | 0 ...iew-of-system-catalogs-and-system-views.md | 0 .../system-catalogs-and-system-views.md | 0 .../system-catalogs/GS_ASP.md | 0 .../system-catalogs/GS_AUDITING_POLICY.md | 0 .../GS_AUDITING_POLICY_ACCESS.md | 0 .../GS_AUDITING_POLICY_FILTERS.md | 0 .../GS_AUDITING_POLICY_PRIVILEGES.md | 0 .../system-catalogs/GS_CLIENT_GLOBAL_KEYS.md | 0 .../GS_CLIENT_GLOBAL_KEYS_ARGS.md | 0 .../system-catalogs/GS_COLUMN_KEYS.md | 0 .../system-catalogs/GS_COLUMN_KEYS_ARGS.md | 0 .../system-catalogs/GS_DB_PRIVILEGE.md | 0 .../system-catalogs/GS_ENCRYPTED_COLUMNS.md | 0 .../system-catalogs/GS_ENCRYPTED_PROC.md | 0 .../system-catalogs/GS_GLOBAL_CHAIN.md | 0 .../system-catalogs/GS_GLOBAL_CONFIG.md | 0 .../system-catalogs/GS_MASKING_POLICY.md | 0 .../GS_MASKING_POLICY_ACTIONS.md | 0 .../GS_MASKING_POLICY_FILTERS.md | 0 .../system-catalogs/GS_MATVIEW.md | 0 .../system-catalogs/GS_MATVIEW_DEPENDENCY.md | 0 .../system-catalogs/GS_MODEL_WAREHOUSE.md | 0 .../system-catalogs/GS_OPT_MODEL.md | 0 .../system-catalogs/GS_PACKAGE.md | 0 .../system-catalogs/GS_POLICY_LABEL.md | 0 .../system-catalogs/GS_RECYCLEBIN.md | 0 .../system-catalogs/GS_TXN_SNAPSHOT.md | 0 .../system-catalogs/GS_UID.md | 0 .../GS_WLM_EC_OPERATOR_INFO.md | 0 .../GS_WLM_INSTANCE_HISTORY.md | 0 .../system-catalogs/GS_WLM_OPERATOR_INFO.md | 0 .../GS_WLM_PLAN_ENCODING_TABLE.md | 0 .../GS_WLM_PLAN_OPERATOR_INFO.md | 0 .../GS_WLM_SESSION_QUERY_INFO_ALL.md | 0 .../GS_WLM_USER_RESOURCE_HISTORY.md | 0 .../system-catalogs/PGXC_CLASS.md | 0 .../system-catalogs/PGXC_GROUP.md | 0 .../system-catalogs/PGXC_NODE.md | 0 .../system-catalogs/PGXC_SLICE.md | 0 .../system-catalogs/PG_AGGREGATE.md | 0 .../system-catalogs/PG_AM.md | 0 .../system-catalogs/PG_AMOP.md | 0 .../system-catalogs/PG_AMPROC.md | 0 .../PG_APP_WORKLOADGROUP_MAPPING.md | 0 .../system-catalogs/PG_ATTRDEF.md | 0 .../system-catalogs/PG_ATTRIBUTE.md | 0 .../system-catalogs/PG_AUTHID.md | 0 .../system-catalogs/PG_AUTH_HISTORY.md | 0 .../system-catalogs/PG_AUTH_MEMBERS.md | 0 .../system-catalogs/PG_CAST.md | 0 .../system-catalogs/PG_CLASS.md | 0 .../system-catalogs/PG_COLLATION.md | 0 .../system-catalogs/PG_CONSTRAINT.md | 0 .../system-catalogs/PG_CONVERSION.md | 0 .../system-catalogs/PG_DATABASE.md | 0 .../system-catalogs/PG_DB_ROLE_SETTING.md | 0 .../system-catalogs/PG_DEFAULT_ACL.md | 0 .../system-catalogs/PG_DEPEND.md | 0 .../system-catalogs/PG_DESCRIPTION.md | 0 .../system-catalogs/PG_DIRECTORY.md | 0 .../system-catalogs/PG_ENUM.md | 0 .../system-catalogs/PG_EVENT_TRIGGER.md | 0 .../system-catalogs/PG_EXTENSION.md | 0 .../PG_EXTENSION_DATA_SOURCE.md | 0 .../PG_FOREIGN_DATA_WRAPPER.md | 0 .../system-catalogs/PG_FOREIGN_SERVER.md | 0 .../system-catalogs/PG_FOREIGN_TABLE.md | 0 .../system-catalogs/PG_HASHBUCKET.md | 0 .../system-catalogs/PG_INDEX.md | 0 .../system-catalogs/PG_INHERITS.md | 0 .../system-catalogs/PG_JOB.md | 0 .../system-catalogs/PG_JOB_PROC.md | 0 .../system-catalogs/PG_LANGUAGE.md | 0 .../system-catalogs/PG_LARGEOBJECT.md | 0 .../PG_LARGEOBJECT_METADATA.md | 0 .../system-catalogs/PG_NAMESPACE.md | 0 .../system-catalogs/PG_OBJECT.md | 0 .../system-catalogs/PG_OPCLASS.md | 0 .../system-catalogs/PG_OPERATOR.md | 0 .../system-catalogs/PG_OPFAMILY.md | 0 .../system-catalogs/PG_PARTITION.md | 0 .../system-catalogs/PG_PLTEMPLATE.md | 0 .../system-catalogs/PG_PROC.md | 0 .../system-catalogs/PG_PUBLICATION.md | 0 .../system-catalogs/PG_PUBLICATION_REL.md | 0 .../system-catalogs/PG_RANGE.md | 0 .../system-catalogs/PG_REPLICATION_ORIGIN.md | 0 .../system-catalogs/PG_RESOURCE_POOL.md | 0 .../system-catalogs/PG_REWRITE.md | 0 .../system-catalogs/PG_RLSPOLICY.md | 0 .../system-catalogs/PG_SECLABEL.md | 0 .../system-catalogs/PG_SET.md | 0 .../system-catalogs/PG_SHDEPEND.md | 0 .../system-catalogs/PG_SHDESCRIPTION.md | 0 .../system-catalogs/PG_SHSECLABEL.md | 0 .../system-catalogs/PG_STATISTIC.md | 0 .../system-catalogs/PG_STATISTIC_EXT.md | 0 .../system-catalogs/PG_SUBSCRIPTION.md | 0 .../system-catalogs/PG_SUBSCRIPTION_REL.md | 0 .../system-catalogs/PG_SYNONYM.md | 0 .../system-catalogs/PG_TABLESPACE.md | 0 .../system-catalogs/PG_TRIGGER.md | 0 .../system-catalogs/PG_TS_CONFIG.md | 0 .../system-catalogs/PG_TS_CONFIG_MAP.md | 0 .../system-catalogs/PG_TS_DICT.md | 0 .../system-catalogs/PG_TS_PARSER.md | 0 .../system-catalogs/PG_TS_TEMPLATE.md | 0 .../system-catalogs/PG_TYPE.md | 0 .../system-catalogs/PG_USER_MAPPING.md | 0 .../system-catalogs/PG_USER_STATUS.md | 0 .../system-catalogs/PG_WORKLOAD_GROUP.md | 0 .../system-catalogs/PLAN_TABLE_DATA.md | 0 .../system-catalogs/STATEMENT_HISTORY.md | 0 .../system-catalogs/system-catalogs.md | 0 .../system-views/GET_GLOBAL_PREPARED_XACTS.md | 0 .../GS_ASYNC_SUBMIT_SESSIONS_STATUS.md | 0 .../system-views/GS_AUDITING.md | 0 .../system-views/GS_AUDITING_ACCESS.md | 0 .../system-views/GS_AUDITING_PRIVILEGE.md | 0 .../system-views/GS_CLUSTER_RESOURCE_INFO.md | 0 .../system-views/GS_COMPRESSION.md | 0 .../system-views/GS_DB_PRIVILEGES.md | 0 .../system-views/GS_FILE_STAT.md | 0 .../system-views/GS_GSC_MEMORY_DETAIL.md | 0 .../system-views/GS_INSTANCE_TIME.md | 0 .../system-views/GS_LABELS.md | 0 .../system-views/GS_LSC_MEMORY_DETAIL.md | 0 .../system-views/GS_MASKING.md | 0 .../system-views/GS_MATVIEWS.md | 0 .../system-views/GS_OS_RUN_INFO.md | 0 .../system-views/GS_REDO_STAT.md | 0 .../system-views/GS_SESSION_CPU_STATISTICS.md | 0 .../system-views/GS_SESSION_MEMORY.md | 0 .../system-views/GS_SESSION_MEMORY_CONTEXT.md | 0 .../system-views/GS_SESSION_MEMORY_DETAIL.md | 0 .../GS_SESSION_MEMORY_STATISTICS.md | 0 .../system-views/GS_SESSION_STAT.md | 0 .../system-views/GS_SESSION_TIME.md | 0 .../system-views/GS_SQL_COUNT.md | 0 .../system-views/GS_STAT_SESSION_CU.md | 0 .../system-views/GS_THREAD_MEMORY_CONTEXT.md | 0 .../system-views/GS_TOTAL_MEMORY_DETAIL.md | 0 .../system-views/GS_WLM_CGROUP_INFO.md | 0 .../GS_WLM_EC_OPERATOR_STATISTICS.md | 0 .../system-views/GS_WLM_OPERATOR_HISTORY.md | 0 .../GS_WLM_OPERATOR_STATISTICS.md | 0 .../GS_WLM_PLAN_OPERATOR_HISTORY.md | 0 .../GS_WLM_REBUILD_USER_RESOURCE_POOL.md | 0 .../system-views/GS_WLM_RESOURCE_POOL.md | 0 .../system-views/GS_WLM_SESSION_HISTORY.md | 0 .../system-views/GS_WLM_SESSION_INFO.md | 0 .../system-views/GS_WLM_SESSION_INFO_ALL.md | 0 .../system-views/GS_WLM_SESSION_STATISTICS.md | 0 .../system-views/GS_WLM_USER_INFO.md | 0 .../system-views/MPP_TABLES.md | 0 .../system-views/PGXC_PREPARED_XACTS.md | 0 .../system-views/PG_AVAILABLE_EXTENSIONS.md | 0 .../PG_AVAILABLE_EXTENSION_VERSIONS.md | 0 .../system-views/PG_COMM_DELAY.md | 0 .../system-views/PG_COMM_RECV_STREAM.md | 0 .../system-views/PG_COMM_SEND_STREAM.md | 0 .../system-views/PG_COMM_STATUS.md | 0 .../system-views/PG_CONTROL_GROUP_CONFIG.md | 0 .../system-views/PG_CURSORS.md | 0 .../system-views/PG_EXT_STATS.md | 0 .../system-views/PG_GET_INVALID_BACKENDS.md | 0 .../PG_GET_SENDERS_CATCHUP_TIME.md | 0 .../system-views/PG_GROUP.md | 0 .../system-views/PG_GTT_ATTACHED_PIDS.md | 0 .../system-views/PG_GTT_RELSTATS.md | 0 .../system-views/PG_GTT_STATS.md | 0 .../system-views/PG_INDEXES.md | 0 .../system-views/PG_LOCKS.md | 0 .../system-views/PG_NODE_ENV.md | 0 .../system-views/PG_OS_THREADS.md | 0 .../system-views/PG_PREPARED_STATEMENTS.md | 0 .../system-views/PG_PREPARED_XACTS.md | 0 .../system-views/PG_PUBLICATION_TABLES.md | 0 .../PG_REPLICATION_ORIGIN_STATUS.md | 0 .../system-views/PG_REPLICATION_SLOTS.md | 0 .../system-views/PG_RLSPOLICIES.md | 0 .../system-views/PG_ROLES.md | 0 .../system-views/PG_RULES.md | 0 .../system-views/PG_RUNNING_XACTS.md | 0 .../system-views/PG_SECLABELS.md | 0 .../system-views/PG_SESSION_IOSTAT.md | 0 .../system-views/PG_SESSION_WLMSTAT.md | 0 .../system-views/PG_SETTINGS.md | 0 .../system-views/PG_SHADOW.md | 0 .../system-views/PG_STATIO_ALL_INDEXES.md | 0 .../system-views/PG_STATIO_ALL_SEQUENCES.md | 0 .../system-views/PG_STATIO_ALL_TABLES.md | 0 .../system-views/PG_STATIO_SYS_INDEXES.md | 0 .../system-views/PG_STATIO_SYS_SEQUENCES.md | 0 .../system-views/PG_STATIO_SYS_TABLES.md | 0 .../system-views/PG_STATIO_USER_INDEXES.md | 0 .../system-views/PG_STATIO_USER_SEQUENCES.md | 0 .../system-views/PG_STATIO_USER_TABLES.md | 0 .../system-views/PG_STATS.md | 0 .../system-views/PG_STAT_ACTIVITY.md | 0 .../system-views/PG_STAT_ACTIVITY_NG.md | 0 .../system-views/PG_STAT_ALL_INDEXES.md | 0 .../system-views/PG_STAT_ALL_TABLES.md | 0 .../system-views/PG_STAT_BAD_BLOCK.md | 0 .../system-views/PG_STAT_BGWRITER.md | 0 .../system-views/PG_STAT_DATABASE.md | 0 .../PG_STAT_DATABASE_CONFLICTS.md | 0 .../system-views/PG_STAT_REPLICATION.md | 0 .../system-views/PG_STAT_SUBSCRIPTION.md | 0 .../system-views/PG_STAT_SYS_INDEXES.md | 0 .../system-views/PG_STAT_SYS_TABLES.md | 0 .../system-views/PG_STAT_USER_FUNCTIONS.md | 0 .../system-views/PG_STAT_USER_INDEXES.md | 0 .../system-views/PG_STAT_USER_TABLES.md | 0 .../system-views/PG_STAT_XACT_ALL_TABLES.md | 0 .../system-views/PG_STAT_XACT_SYS_TABLES.md | 0 .../PG_STAT_XACT_USER_FUNCTIONS.md | 0 .../system-views/PG_STAT_XACT_USER_TABLES.md | 0 .../system-views/PG_TABLES.md | 0 .../system-views/PG_TDE_INFO.md | 0 .../system-views/PG_THREAD_WAIT_STATUS.md | 0 .../system-views/PG_TIMEZONE_ABBREVS.md | 0 .../system-views/PG_TIMEZONE_NAMES.md | 0 .../system-views/PG_TOTAL_MEMORY_DETAIL.md | 0 .../PG_TOTAL_USER_RESOURCE_INFO.md | 0 .../PG_TOTAL_USER_RESOURCE_INFO_OID.md | 0 .../system-views/PG_USER.md | 0 .../system-views/PG_USER_MAPPINGS.md | 0 .../system-views/PG_VARIABLE_INFO.md | 0 .../system-views/PG_VIEWS.md | 0 .../system-views/PG_WLM_STATISTICS.md | 0 .../system-views/PLAN_TABLE.md | 0 .../system-views/system-views.md | 0 .../viewing-system-catalogs.md | 0 .../reference-guide/tool-reference/FAQ.md | 0 .../tool-reference/client-tool/client-tool.md | 0 .../client-tool/gsql/client-tool-gsql.md | 0 .../client-tool/gsql/command-reference.md | 0 .../client-tool/gsql/gsql-faq.md | 0 .../client-tool/gsql/gsql-introduction.md | 0 .../gsql/meta-command-reference.md | 0 .../gsql/obtaining-help-information.md | 0 .../client-tool/gsql/usage-guidelines.md | 0 .../functions-of-mogdb-executable-scripts.md | 0 .../tool-reference/server-tools/gs_cgroup.md | 0 .../tool-reference/server-tools/gs_check.md | 0 .../tool-reference/server-tools/gs_checkos.md | 0 .../server-tools/gs_checkperf.md | 0 .../server-tools/gs_collector.md | 0 .../tool-reference/server-tools/gs_dump.md | 0 .../tool-reference/server-tools/gs_dumpall.md | 0 .../tool-reference/server-tools/gs_encrypt.md | 0 .../tool-reference/server-tools/gs_guc.md | 0 .../tool-reference/server-tools/gs_om.md | 0 .../server-tools/gs_plan_simulator.md | 0 .../tool-reference/server-tools/gs_restore.md | 0 .../tool-reference/server-tools/gs_sdr.md | 0 .../tool-reference/server-tools/gs_ssh.md | 0 .../tool-reference/server-tools/gs_watch.md | 0 .../server-tools/server-tools.md | 0 ...ogs-and-views-supported-by-gs_collector.md | 0 .../tool-reference/tool-overview.md | 0 .../tool-reference/tool-reference.md | 0 .../dsscmd.md | 0 .../dssserver.md | 0 .../gs_backup.md | 0 .../gs_basebackup.md | 0 .../gs_ctl.md | 0 .../gs_dropnode.md | 0 .../gs_expansion.md | 0 .../gs_initdb.md | 0 .../gs_install.md | 0 .../gs_postuninstall.md | 0 .../gs_preinstall.md | 0 .../gs_probackup.md | 0 .../gs_sshexkey.md | 0 .../gs_tar.md | 0 .../gs_uninstall.md | 0 .../gs_upgradectl.md | 0 .../gstrace.md | 0 .../kadmin-local.md | 0 .../kdb5_util.md | 0 .../kdestroy.md | 0 .../kinit.md | 0 .../klist.md | 0 .../krb5kdc.md | 0 .../mogdb.md | 0 .../pg_archivecleanup.md | 0 .../pg_config.md | 0 .../pg_controldata.md | 0 .../pg_recvlogical.md | 0 .../pg_resetxlog.md | 0 .../tools-used-in-the-internal-system/pscp.md | 0 .../tools-used-in-the-internal-system/pssh.md | 0 .../tools-used-in-the-internal-system.md | 0 .../transfer.py.md | 0 .../security-guide/security-guide.md | 0 .../1-client-access-authentication.md | 0 .../2-managing-users-and-their-permissions.md | 0 .../security/3-configuring-database-audit.md | 0 .../4-setting-encrypted-equality-query.md | 0 .../security/5-setting-a-ledger-database.md | 0 .../security/6-transparent-data-encryption.md | 0 .../security/database-security-management.md | 0 .../{v5.1 => v6.0}/source-code-parsing.md | 0 product/en/docs-mogdb/{v5.1 => v6.0}/toc.md | 6 +- .../en/docs-mogdb/{v5.1 => v6.0}/toc_about.md | 6 +- .../{v5.1 => v6.0}/toc_ai-features.md | 2 +- .../toc_characteristic_description.md | 2 +- .../toc_common-faults-and-identification.md | 2 +- .../toc_communication-matrix.md | 2 +- .../{v5.1 => v6.0}/toc_datatypes-and-sql.md | 2 +- .../en/docs-mogdb/{v5.1 => v6.0}/toc_dev.md | 2 +- .../en/docs-mogdb/{v5.1 => v6.0}/toc_error.md | 2 +- .../{v5.1 => v6.0}/toc_extension-referecne.md | 2 +- .../en/docs-mogdb/{v5.1 => v6.0}/toc_faqs.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_glossary.md | 2 +- .../{v5.1 => v6.0}/toc_high_available.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_install.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_manage.md | 2 +- .../toc_parameters-and-tools.md | 2 +- .../{v5.1 => v6.0}/toc_performance.md | 3 +- .../{v5.1 => v6.0}/toc_quickstart.md | 3 +- .../docs-mogdb/{v5.1 => v6.0}/toc_secure.md | 3 +- .../toc_system-catalogs-and-functions.md | 2 +- .../about-mogdb/mogdb-new-feature/5.0.0.md | 223 ------------------ .../about-mogdb/mogdb-new-feature/5.0.1.md | 54 ----- .../about-mogdb/mogdb-new-feature/5.0.2.md | 55 ----- .../mogdb-new-feature/release-note.md | 14 -- .../{v5.1 => v6.0}/AI-features/ai-feature.md | 0 .../ai4db/abo-optimizer/abo-optimizer.md | 0 .../adaptive-plan-selection-best-practices.md | 0 .../adaptive-plan-selection-overview.md | 0 .../adaptive-plan-selection-prerequisites.md | 0 ...adaptive-plan-selection-troubleshooting.md | 0 .../adaptive-plan-selection-usage-guide.md | 0 .../ai4db-adaptive-plan-selection.md | 0 ...i4db-intelligent-cardinality-estimation.md | 0 ...t-cardinality-estimation-best-practices.md | 0 ...lligent-cardinality-estimation-overview.md | 0 ...nt-cardinality-estimation-prerequisites.md | 0 ...-cardinality-estimation-troubleshooting.md | 0 ...gent-cardinality-estimation-usage-guide.md | 0 .../ai-sub-functions-of-the-dbmind.md | 0 .../anomaly-analysis-command-reference.md | 0 ...lysis-multi-metric-correlation-analysis.md | 0 ...aly-analysis-obtaining-help-information.md | 0 .../anomaly-analysis-overview.md | 0 .../anomaly-analysis-troubleshooting.md | 0 .../anomaly-analysis-usage-guide.md | 0 .../anomaly-analysis/anomaly-analysis.md | 0 .../anomaly-detection-command-reference.md | 0 ...ly-detection-obtaining-help-information.md | 0 .../anomaly-detection-overview.md | 0 .../anomaly-detection-troubleshooting.md | 0 .../anomaly-detection-usage-guide.md | 0 .../anomaly-detection/anomaly-detection.md | 0 ...cast-trend-prediction-command-reference.md | 0 ...trend-prediction-environment-deployment.md | 0 ...d-prediction-obtaining-help-information.md | 0 .../forcast-trend-prediction-overview.md | 0 ...orcast-trend-prediction-troubleshooting.md | 0 .../forcast-trend-prediction-usage-guide.md | 0 .../forcast-trend-prediction.md | 0 .../index-advisor-index-recommendation.md | 0 .../single-query-index-recommendation.md | 0 .../virtual-index.md | 0 .../workload-level-index-recommendation.md | 0 .../slow-sql-statements-command-reference.md | 0 ...w-sql-statements-environment-deployment.md | 0 ...l-statements-obtaining-help-information.md | 0 .../slow-sql-statements-overview.md | 0 .../slow-sql-statements-troubleshooting.md | 0 .../slow-sql-statements-usage-guide.md | 0 .../slow-sql-statements.md | 0 ...l-statement-rewriting-command-reference.md | 0 ...nt-rewriting-obtaining-help-information.md | 0 ...writer-sql-statement-rewriting-overview.md | 0 ...sql-statement-rewriting-troubleshooting.md | 0 ...ter-sql-statement-rewriting-usage-guide.md | 0 .../sql-rewriter-sql-statement-rewriting.md | 0 ...ag-slow-sql-discovery-command-reference.md | 0 ...ql-discovery-obtaining-help-information.md | 0 .../sqldiag-slow-sql-discovery-overview.md | 0 ...diag-slow-sql-discovery-troubleshooting.md | 0 .../sqldiag-slow-sql-discovery-usage-guide.md | 0 .../sqldiag-slow-sql-discovery.md | 0 .../x-tuner-command-reference.md | 0 .../x-tuner-examples.md | 0 .../x-tuner-obtaining-help-information.md | 0 .../x-tuner-overview.md | 0 ...er-parameter-optimization-and-diagnosis.md | 0 .../x-tuner-preparations.md | 0 .../x-tuner-troubleshooting.md | 0 .../ai4db/ai4db-autonomous-database-o&m.md | 0 .../components-that-support-dbmind.md | 0 .../prometheus-exporter-command-reference.md | 0 ...metheus-exporter-environment-deployment.md | 0 ...eus-exporter-obtaining-help-information.md | 0 .../prometheus-exporter-overview.md | 0 .../prometheus-exporter-troubleshooting.md | 0 .../prometheus-exporter-usage-guide.md | 0 .../prometheus-exporter.md | 0 .../AI-features/ai4db/dbmind-deployment.md | 0 .../ai4db/dbmind-mode/component.md | 0 .../ai4db/dbmind-mode/dbmind-mode.md | 0 .../AI-features/ai4db/dbmind-mode/service.md | 0 .../AI-features/ai4db/dbmind-mode/set.md | 0 .../{v5.1 => v6.0}/AI-features/db4ai/db4ai.md | 0 ...query-for-model-training-and-prediction.md | 0 ...i-snapshots-for-data-version-management.md | 0 .../db4ai/full-process-ai/full-process-ai.md | 0 .../full-process-ai/plpython-fenced-mode.md | 0 .../AI-features/db4ai/native-db4ai-engine.md | 0 .../zh/docs-mogdb/{v5.1 => v6.0}/_index.md | 0 .../MogDB-compared-to-openGauss.md | 0 .../{v5.1 => v6.0}/about-mogdb/about-mogdb.md | 0 .../mogdb-new-feature/release-note.md | 14 ++ .../2-docker-based-mogdb.md | 0 .../open-source-components/DBMS-RANDOM.md | 0 .../open-source-components/compat-tools.md | 0 .../open-source-components/mog_filedump.md | 0 .../open-source-components/mog_xlogdump.md | 0 .../open-source-components/mogdb-monitor.md | 0 .../open-source-components.md | 0 .../about-mogdb/terms-of-use.md | 0 .../about-mogdb/usage-limitations.md | 0 .../administrator-guide.md | 0 .../backup-and-restoration-overview.md | 0 .../backup-and-restoration.md | 0 .../flashback-restoration.md | 0 .../logical-backup-and-restoration.md | 0 .../physical-backup-and-restoration.md | 0 .../column-store-tables-management.md | 0 ...mon-primary-backup-deployment-scenarios.md | 0 .../database-deployment-scenario.md | 0 .../resource-pooling-architecture.md | 0 ...rrent-architectural-feature-constraints.md | 0 ...-developer-environment-deployment-guide.md | 0 ...urce-pooling-om-installation-deployment.md | 0 ...-pooling-one-city-two-center-deployment.md | 0 .../two-city-three-dc-dr.md | 0 ...-and-gs_dumpall-to-export-data-overview.md | 0 .../2-exporting-a-single-database.md | 0 .../3-exporting-all-databases.md | 0 ...-by-a-user-without-required-permissions.md | 0 .../exporting-data/exporting-data.md | 0 .../importing-and-exporting-data.md | 0 .../importing-data/1-import-modes.md | 0 ...10-managing-concurrent-write-operations.md | 0 ...ing-the-INSERT-statement-to-insert-data.md | 0 ...OPY-FROM-STDIN-statement-to-import-data.md | 0 ...sing-a-gsql-meta-command-to-import-data.md | 0 .../5-using-gs_restore-to-import-data.md | 0 .../6-updating-data-in-a-table.md | 0 .../importing-data/7-deep-copy.md | 0 .../importing-data/8-ANALYZE-table.md | 0 .../9-doing-VACUUM-to-a-table.md | 0 .../importing-data/importing-data.md | 0 .../localization/character-set-support.md | 0 .../localization/collation-support.md | 0 .../localization/locale-support.md | 0 .../localization/localization.md | 0 .../1-introducing-mot/1-mot-introduction.md | 0 .../2-mot-features-and-benefits.md | 0 .../3-mot-key-technologies.md | 0 .../4-mot-usage-scenarios.md | 0 .../5-mot-performance-benchmarks.md | 0 .../1-introducing-mot/introducing-mot.md | 0 .../2-using-mot/1-using-mot-overview.md | 0 .../2-using-mot/2-mot-preparation.md | 0 .../2-using-mot/3-mot-deployment.md | 0 .../mot-engine/2-using-mot/4-mot-usage.md | 0 .../2-using-mot/5-mot-administration.md | 0 .../6-mot-sample-tpcc-benchmark.md | 0 .../mot-engine/2-using-mot/using-mot.md | 0 .../mot-engine/3-concepts-of-mot/3-1.md | 0 .../mot-engine/3-concepts-of-mot/3-2.md | 0 .../mot-engine/3-concepts-of-mot/3-3.md | 0 .../mot-engine/3-concepts-of-mot/3-4.md | 0 .../mot-engine/3-concepts-of-mot/3-5.md | 0 .../mot-engine/3-concepts-of-mot/3-6.md | 0 .../mot-engine/3-concepts-of-mot/3-7.md | 0 .../mot-engine/3-concepts-of-mot/3-8.md | 0 .../mot-engine/3-concepts-of-mot/3-9.md | 0 .../3-concepts-of-mot/concepts-of-mot.md | 0 .../mot-engine/4-appendix/1-references.md | 0 .../mot-engine/4-appendix/2-glossary.md | 0 .../mot-engine/4-appendix/mot-appendix.md | 0 .../mot-engine/mot-engine.md | 0 .../primary-and-standby-management.md | 0 .../0-starting-and-stopping-mogdb.md | 0 .../1-routine-maintenance-check-items.md | 0 ...0-data-security-maintenance-suggestions.md | 0 .../routine-maintenance/11-log-reference.md | 0 .../2-checking-os-parameters.md | 0 .../3-checking-mogdb-health-status.md | 0 .../4-checking-database-performance.md | 0 .../5-checking-and-deleting-logs.md | 0 .../6-checking-time-consistency.md | 0 ...g-the-number-of-application-connections.md | 0 .../8-routinely-maintaining-tables.md | 0 .../9-routinely-recreating-an-index.md | 0 .../exporting-and-viewing-the-wdr.md | 0 .../routine-maintenance.md | 0 .../routine-maintenance/slow-sql-diagnosis.md | 0 .../using-the-gsql-client-for-connection.md | 0 .../administrator-guide/upgrade-guide.md | 0 .../abo-optimizer/adaptive-plan-selection.md | 0 ...haracteristic-description-abo-optimizer.md | 0 .../intelligent-cardinality-estimation.md | 0 .../ai-capabilities/ai-capabilities.md | 0 ...ection-forecast-and-exception-detection.md | 0 ...-cause-analysis-for-slow-sql-statements.md | 0 .../3-index-recommendation.md | 0 .../4-parameter-tuning-and-diagnosis.md | 0 .../5-slow-sql-statement-discovery.md | 0 .../characteristic-description-ai4db.md | 0 .../db4ai-database-driven-ai.md | 0 .../1-standard-sql.md | 0 .../2-standard-development-interfaces.md | 0 .../3-postgresql-api-compatibility.md | 0 .../ECPG.md | 0 .../MogDB-MySQL-compatibility.md | 0 .../MogDB-Oracle-compatibility.md | 0 .../application-development-interfaces.md | 0 .../characteristic-description-overview.md | 2 +- .../characteristic-description.md | 0 .../add-rowtype-attribute-to-the-view.md | 0 ...tions-distinct-performance-optimization.md | 0 ...aggregate-functions-support-keep-clause.md | 0 ...e-functions-support-scenario-extensions.md | 0 ...n-without-parentheses-in-some-scenarios.md | 0 ...nd-ascii-behave-like-oracle-in-non-UTF8.md | 0 .../compatibility/compat-for-oracle-hint.md | 0 .../compatibility/compatibility.md | 0 ...h-mysql-alias-support-for-single-quotes.md | 0 .../create-view-with-read-only.md | 0 ...ate-current_time-keywords-as-field-name.md | 0 .../compatibility/custom-type-array.md | 0 .../customize-type-pass-parameter-by-name.md | 0 ...bstored-procedures-in-stored-procedures.md | 0 .../for-update-supports-outer-join.md | 0 .../compatibility/format-error-backtrace.md | 0 .../generated-column-as-partition-key.md | 0 ...ormation-schema-columns-add-extra-field.md | 0 ...current-sql-in-complex-stored-procedure.md | 0 .../compatibility/merge-into-add-delete.md | 0 .../mod-function-float-to-int.md | 0 .../mogdb-supports-insert-all.md | 0 .../oid-type-regrole-and-regnamespace.md | 0 .../oracle-dblink-syntax-compatibility.md | 0 .../compatibility/pivot-and-unpivot.md | 0 ...able-support-numeric-interval-partition.md | 0 ...hen-creating-package-function-procedure.md | 0 ...bypass-method-when-merge-into-hit-index.md | 0 ...es-to-procedure-and-function-parameters.md | 0 ...-constants-in-package-as-default-values.md | 0 .../compatibility/support-for-copy-rtrim.md | 0 ...plsql-anonymous-block-binding-variables.md | 0 ...support-offset-as-table-and-field-names.md | 0 .../support-passing-the-count-attribute.md | 0 .../compatibility/support-plpgsql-subtype.md | 0 .../support-q-quote-escape-character.md | 0 ...g-two-date-types-to-return-numeric-type.md | 0 ...ntheses-for-function-without-parameters.md | 0 .../compatibility/support-table-function.md | 0 ...the-same-name-after-the-end-with-oracle.md | 0 .../compatibility/support-where-current-of.md | 0 .../type-conversion-for-union-and-decode.md | 0 .../1-access-control-model.md | 0 .../10-row-level-access-control.md | 0 .../11-password-strength-verification.md | 0 ...ity-query-in-a-fully-encrypted-database.md | 0 .../13-ledger-database-mechanism.md | 0 .../14-transparent-data-encryption.md | 0 ...ation-of-control-and-access-permissions.md | 0 .../3-database-encryption-authentication.md | 0 .../4-data-encryption-and-storage.md | 0 .../database-security/5-database-audit.md | 0 .../6-network-communication-security.md | 0 .../database-security/7-resource-label.md | 0 .../database-security/8-unified-audit.md | 0 .../9-dynamic-data-anonymization.md | 0 .../database-security/database-security.md | 0 ...ort-for-functions-and-stored-procedures.md | 0 .../10-autonomous-transaction.md | 0 .../11-global-temporary-table.md | 0 .../12-pseudocolumn-rownum.md | 0 .../13-stored-procedure-debugging.md | 0 ...-load-balancing-and-readwrite-isolation.md | 0 .../15-in-place-update-storage-engine.md | 0 .../16-publication-subscription.md | 0 .../17-foreign-key-lock-enhancement.md | 0 .../18-data-compression-in-oltp-scenarios.md | 0 .../19-transaction-async-submit.md | 0 .../enterprise-level-features/2-sql-hints.md | 0 .../20-copy-import-optimization.md | 0 .../21-dynamic-partition-pruning.md | 0 .../22-sql-running-status-observation.md | 0 .../23-index-creation-parallel-control.md | 0 .../24-brin-index.md | 0 .../25-bloom-index.md | 0 .../3-full-text-indexing.md | 0 .../4-copy-interface-for-error-tolerance.md | 0 .../5-partitioning.md | 0 ...support-for-advanced-analysis-functions.md | 0 .../7-materialized-view.md | 0 .../8-hyperloglog.md | 0 .../9-creating-an-index-online.md | 0 .../enterprise-level-features.md | 0 .../event-trigger.md | 0 .../high-availability/1-primary-standby.md | 0 .../10-adding-or-deleting-a-standby-server.md | 0 ...-entering-the-maximum-availability-mode.md | 0 .../12-parallel-logical-decoding.md | 0 .../high-availability/13-dcf.md | 0 .../high-availability/14-cm.md | 0 .../high-availability/15-global-syscache.md | 0 ...-a-standby-node-to-build-a-standby-node.md | 0 .../17-two-city-three-dc-dr.md | 0 .../2-logical-replication.md | 0 .../high-availability/4-logical-backup.md | 0 .../high-availability/5-physical-backup.md | 0 .../6-automatic-job-retry-upon-failure.md | 0 .../high-availability/7-ultimate-rto.md | 0 .../8-cascaded-standby-server.md | 0 .../high-availability/9-delayed-replay.md | 0 ...omponent-supporting-two-node-deployment.md | 0 .../high-availability/ddl-query-of-view.md | 0 ...-standby-high-availability-capabilities.md | 0 ...vailability-based-on-the-paxos-protocol.md | 0 .../high-availability/high-availability.md | 0 ...le-level-parallel-recovery-optimization.md | 0 .../high-performance/1-cbo-optimizer.md | 0 .../high-performance/10-xlog-no-lock-flush.md | 0 .../11-parallel-page-based-redo-for-ustore.md | 0 ...store-execution-to-vectorized-execution.md | 0 .../high-performance/2-llvm.md | 0 .../high-performance/3-vectorized-engine.md | 0 .../4-hybrid-row-column-store.md | 0 .../5-adaptive-compression.md | 0 ...-kunpeng-numa-architecture-optimization.md | 0 .../8-high-concurrency-of-thread-pools.md | 0 .../9-smp-for-parallel-execution.md | 0 .../adaptive-two-phase-aggregation.md | 0 .../astore-row-level-compression.md | 0 .../btree-index-compression.md | 0 ...hancement-of-tracing-backend-key-thread.md | 0 .../enhancement-of-wal-redo-performance.md | 0 .../high-performance/high-performance.md | 0 .../join-predicate-pushdown.md | 0 .../high-performance/large-page-memory.md | 0 .../ock-accelerated-data-transmission.md | 0 ...ock-scrlock-accelerate-distributed-lock.md | 0 .../high-performance/optimizer-trace.md | 0 .../ordering-operator-optimization.md | 0 .../high-performance/parallel-index-scan.md | 0 .../parallel-query-optimization.md | 0 .../high-performance/pbe-like-optimization.md | 0 .../high-performance/seqscan-prefetch.md | 0 .../high-performance/sql-bypass.md | 0 ...oncurrent-rollback-process-optimization.md | 0 .../high-performance/tracing-SQL-function.md | 0 .../maintainability/1-gray-upgrade.md | 0 .../2-workload-diagnosis-report.md | 0 .../maintainability/3-slow-sql-diagnosis.md | 0 .../4-session-performance-diagnosis.md | 0 .../5-system-kpi-aided-diagnosis.md | 0 .../maintainability/built-in-stack-tool.md | 0 .../maintainability/dcf-module-tracing.md | 0 .../error-when-writing-illegal-characters.md | 0 .../maintainability/extension-splitting.md | 0 .../maintainability/fault-diagnosis.md | 0 .../light-lock-export-and-analysis.md | 0 .../maintainability/maintainability.md | 0 .../maintainability/pageinspect-pagehack.md | 0 .../maintainability/sql-patch.md | 0 ...a-distributed-database-using-kubernetes.md | 0 .../distributed-analysis-capabilities.md | 0 .../distributed-database-capability.md | 0 .../middleware/middleware.md | 0 .../resource-pooling/DSS-enhancements.md | 0 .../resource-pooling/DSS-resource-pooling.md | 0 ...description-of-resource-pooling-feature.md | 0 .../extreme-rto-on-demand-playback.md | 0 ...-standby-dual-cluster-disaster-recovery.md | 0 .../resource-pooling-operator-offloading.md | 0 ...source-pooling-performance-optimization.md | 0 .../resource-pooling/resource-pooling.md | 0 ...warding-within-standby-node-transaction.md | 0 ...ency-escape-at-the-infrastructure-layer.md | 0 .../workload-management.md | 0 .../cm-fault/cm-cluster-brain-split-fault.md | 0 .../cm-fault/cm-cluster-manual-failover.md | 0 .../cm-fault/cm-fault.md | 0 .../common-fault-locating-cases.md | 0 ...e-dump-occurs-after-installation-on-x86.md | 0 ...core-dump-occurs-due-to-full-disk-space.md | 0 ...settings-of-guc-parameter-log-directory.md | 0 ...e-dump-occurs-when-removeipc-is-enabled.md | 0 .../core-fault-locating.md | 0 .../after-you-run-the-du-command.md | 0 .../disk-space-usage-reaches-the-threshold.md | 0 ...or-no-space-left-on-device-is-displayed.md | 0 .../file-is-damaged-in-the-xfs-file-system.md | 0 .../file-system-disk-memory.md | 0 .../insufficient-memory.md | 0 .../shared-memory-leak.md | 0 .../when-the-tpcc-is-running.md | 0 .../index-fault/b-tree-index-faults.md | 0 .../index-fault/index-fault.md | 0 .../index-fault/reindexing-fails.md | 0 ...hen-a-user-specifies-only-an-index-name.md | 0 ...-error-occurs-during-integer-conversion.md | 0 .../different-data-is-displayed.md | 0 .../forcibly-terminating-a-session.md | 0 .../permission-session-data-type.md | 0 .../performance-deterioration.md | 0 .../primary-node-is-hung-in-demoting.md | 0 .../service-ha-concurrency/query-failure.md | 0 .../service-ha-concurrency.md | 0 .../service-startup-failure.md | 0 .../standby-node-in-the-need-repair-state.md | 0 .../too-many-clients-already.md | 0 ...alyzing-the-status-of-a-query-statement.md | 0 ...ng-whether-a-query-statement-is-blocked.md | 0 .../lock-wait-timeout-is-displayed.md | 0 .../sql-fault/low-query-efficiency.md | 0 .../slow-response-to-a-query-statement.md | 0 .../sql-fault/sql-fault.md | 0 ...ed-when-the-table-partition-is-modified.md | 0 .../table-partition-table.md | 0 .../table-size-does-not-change.md | 0 .../common-fault-locating-methods.md | 0 .../common-faults-and-identification.md | 0 .../{v5.1 => v6.0}/communication-matrix.md | 0 .../developer-guide/1-1-stored-procedure.md | 0 ...-introduction-to-autonomous-transaction.md | 0 ...ction-supporting-autonomous-transaction.md | 0 ...edure-supporting-autonomous-transaction.md | 0 .../autonomous-transaction/4-restrictions.md | 0 ...block-supporting-autonomous-transaction.md | 0 .../1-development-based-on-jdbc-overview.md | 0 .../10-example-common-operations.md | 0 ...e-retrying-sql-queries-for-applications.md | 0 ...-and-exporting-data-through-local-files.md | 0 ...rating-data-from-a-my-database-to-mogdb.md | 0 .../14-example-logic-replication-code.md | 0 ...-to-the-database-in-different-scenarios.md | 0 .../15-JDBC/1-java-sql-Connection.md | 0 .../15-JDBC/10-javax-sql-DataSource.md | 0 .../15-JDBC/11-javax-sql-PooledConnection.md | 0 .../15-JDBC/12-javax-naming-Context.md | 0 ...-javax-naming-spi-InitialContextFactory.md | 0 .../15-JDBC/14-CopyManager.md | 0 .../15-JDBC/2-java-sql-CallableStatement.md | 0 .../15-JDBC/3-java-sql-DatabaseMetaData.md | 0 .../15-JDBC/4-java-sql-Driver.md | 0 .../15-JDBC/5-java-sql-PreparedStatement.md | 0 .../15-JDBC/6-java-sql-ResultSet.md | 0 .../15-JDBC/7-java-sql-ResultSetMetaData.md | 0 .../15-JDBC/8-java-sql-Statement.md | 0 .../9-javax-sql-ConnectionPoolDataSource.md | 0 .../15-JDBC/jdbc-interface-reference.md | 0 ...kage-driver-class-and-environment-class.md | 0 .../3-development-process.md | 0 .../4-loading-the-driver.md | 0 .../5-connecting-to-a-database.md | 0 .../6-connecting-to-a-database-using-ssl.md | 0 .../7-running-sql-statements.md | 0 .../8-processing-data-in-a-result-set.md | 0 .../8.1-log-management.md | 0 .../9-closing-a-connection.md | 0 .../connecting-to-a-database-using-uds.md | 0 .../development-based-on-jdbc.md | 0 ...imary-and-backup-cluster-load-balancing.md | 0 .../jdbc-based-common-parameter-reference.md | 0 .../jdbc-release-notes.md | 0 .../1-development-based-on-odbc.md | 0 ...es-dependent-libraries-and-header-files.md | 0 ...nfiguring-a-data-source-in-the-linux-os.md | 0 .../4-development-process.md | 0 ...mple-common-functions-and-batch-binding.md | 0 ...pplication-scenarios-and-configurations.md | 0 .../6-ODBC/2-0-odbc-overview.md | 0 .../6-ODBC/2-1-SQLAllocEnv.md | 0 .../6-ODBC/2-10-SQLExecDirect.md | 0 .../6-ODBC/2-11-SQLExecute.md | 0 .../6-ODBC/2-12-SQLFetch.md | 0 .../6-ODBC/2-13-SQLFreeStmt.md | 0 .../6-ODBC/2-14-SQLFreeConnect.md | 0 .../6-ODBC/2-15-SQLFreeHandle.md | 0 .../6-ODBC/2-16-SQLFreeEnv.md | 0 .../6-ODBC/2-17-SQLPrepare.md | 0 .../6-ODBC/2-18-SQLGetData.md | 0 .../6-ODBC/2-19-SQLGetDiagRec.md | 0 .../6-ODBC/2-2-SQLAllocConnect.md | 0 .../6-ODBC/2-20-SQLSetConnectAttr.md | 0 .../6-ODBC/2-21-SQLSetEnvAttr.md | 0 .../6-ODBC/2-22-SQLSetStmtAttr.md | 0 .../6-ODBC/2-23-Examples.md | 0 .../6-ODBC/2-3-SQLAllocHandle.md | 0 .../6-ODBC/2-4-SQLAllocStmt.md | 0 .../6-ODBC/2-5-SQLBindCol.md | 0 .../6-ODBC/2-6-SQLBindParameter.md | 0 .../6-ODBC/2-7-SQLColAttribute.md | 0 .../6-ODBC/2-8-SQLConnect.md | 0 .../6-ODBC/2-9-SQLDisconnect.md | 0 .../6-ODBC/odbc-interface-reference.md | 0 ...1-database-connection-control-functions.md | 0 .../10-PQstatus.md | 0 .../2-PQconnectdbParams.md | 0 .../3-PQconnectdb.md | 0 .../4-PQconninfoParse.md | 0 .../5-PQconnectStart.md | 0 .../6-PQerrorMessage.md | 0 .../7-PQsetdbLogin.md | 0 .../8-PQfinish.md | 0 .../9-PQreset.md | 0 .../1-PQclear.md | 0 .../10-PQntuples.md | 0 .../11-PQprepare.md | 0 .../12-PQresultStatus.md | 0 .../2-PQexec.md | 0 .../3-PQexecParams.md | 0 .../4-PQexecParamsBatch.md | 0 .../5-PQexecPrepared.md | 0 .../6-PQexecPreparedBatch.md | 0 .../7-PQfname.md | 0 .../8-PQgetvalue.md | 0 .../9-PQnfields.md | 0 .../database-statement-execution-functions.md | 0 ...ons-for-asynchronous-command-processing.md | 0 .../2-PQsendQuery.md | 0 .../3-PQsendQueryParams.md | 0 .../4-PQsendPrepare.md | 0 .../5-PQsendQueryPrepared.md | 0 .../6-PQflush.md | 0 .../1-PQgetCancel.md | 0 .../2-PQfreeCancel.md | 0 .../3-PQcancel.md | 0 ...tions-for-canceling-queries-in-progress.md | 0 .../2-libpq/libpq-api-reference.md | 0 .../dependent-header-files-of-libpq.md | 0 .../development-based-on-libpq.md | 0 .../development-process.md | 0 .../libpq-example.md | 0 .../link-parameters.md | 0 .../1-psycopg-based-development.md | 0 .../10.1-example-common-operations.md | 0 .../1-psycopg2-connect.md | 0 .../10-connection-close.md | 0 .../2-connection-cursor.md | 0 .../3-cursor-execute-query-vars-list.md | 0 .../4-curosr-executemany-query-vars-list.md | 0 .../5-connection-commit.md | 0 .../6-connection-rollback.md | 0 .../7-cursor-fetchone.md | 0 .../8-cursor-fetchall.md | 0 .../9-cursor-close.md | 0 .../psycopg-api-reference.md | 0 .../12-psycopg2-release-notes.md | 0 .../2-psycopg-package.md | 0 .../3.1-development-process.md | 0 .../4-connecting-to-a-database.md | 0 ...daptation-of-python-values-to-sql-types.md | 0 .../6-new-features-in-mogdb.md | 0 .../9-connecting-to-the-database-using-ssl.md | 0 .../developer-guide/dev/5-commissioning.md | 0 .../dev/application-development-tutorial.md | 0 .../design-specification.md | 0 ...roduction-to-development-specifications.md | 0 .../naming-specification.md | 0 .../overview-of-development-specifications.md | 0 .../postgresql-compatibility.md | 0 .../query-operations.md | 0 .../syntax-specification.md | 0 .../developer-guide/developer-guide.md | 0 .../developer-guide/extension/extension.md | 0 .../foreign-data-wrapper/1-oracle_fdw.md | 0 .../foreign-data-wrapper/2-mysql_fdw.md | 0 .../foreign-data-wrapper/3-postgres_fdw.md | 0 .../extension/foreign-data-wrapper/dblink.md | 0 .../foreign-data-wrapper/fdw-introduction.md | 0 .../foreign-data-wrapper/file_fdw.md | 0 .../libsmartscan/libsmartscan-installation.md | 0 .../libsmartscan/libsmartscan-parameters.md | 0 .../libsmartscan/libsmartscan.md | 0 .../ndpplugin-extension-constraints.md | 0 .../ndpplugin-extension-installation.md | 0 .../ndpplugin-extension-overview.md | 0 .../ndpplugin-extension-guc-parameters.md | 0 .../ndpplugin-extension-reference.md | 0 .../ndpplugin-extension-view.md | 0 .../ndpplugin-extension.md | 0 .../extension/pg_bulkload-user-guide.md | 0 .../extension/pg_prewarm-user-guide.md | 0 .../extension/pg_repack-user-guide.md | 0 .../extension/pg_trgm-user-guide.md | 0 .../postgis-extension/postgis-extension.md | 0 .../postgis-extension/postgis-overview.md | 0 .../postgis-support-and-constraints.md | 0 .../postgis-extension/using-postgis.md | 0 .../extension/wal2json-user-guide.md | 0 .../developer-guide/extension/whale.md | 0 .../logical-decoding/1-logical-decoding.md | 0 ...cal-decoding-by-sql-function-interfaces.md | 0 .../logical-decoding/logical-decoding.md | 0 .../logical-replication.md | 0 .../publication-subscription/architecture.md | 0 .../configuration-settings.md | 0 .../publication-subscription/conflicts.md | 0 .../publication-subscription/monitoring.md | 0 .../publication-subscription.md | 0 .../publication-subscription/publications.md | 0 .../publication-subscription/quick-setup.md | 0 .../publication-subscription/restrictions.md | 0 .../publication-subscription/security.md | 0 .../publication-subscription/subscriptions.md | 0 .../1-materialized-view-overview.md | 0 .../1-full-materialized-view-overview.md | 0 .../2-full-materialized-view-usage.md | 0 ...terialized-view-support-and-constraints.md | 0 .../full-materialized-view.md | 0 ...-incremental-materialized-view-overview.md | 0 .../2-incremental-materialized-view-usage.md | 0 ...terialized-view-support-and-constraints.md | 0 .../incremental-materialized-view.md | 0 .../assessment-tool.md | 0 .../dolphin-extension/dolphin-extension.md | 0 .../dolphin-extension/dolphin-installation.md | 0 .../dolphin-mysql-protocol-compatibility.md | 0 .../dolphin-extension/dolphin-overview.md | 0 .../dolphin-extension/dolphin-restrictions.md | 0 .../dolphin-reset-parameters.md | 0 .../dolphin-syntax/dolphin-syntax.md | 0 .../dolphin-syntax/guc-parameters.md | 0 .../dolphin-column-name-identifiers.md | 0 .../identifiers/dolphin-identifiers.md | 0 .../data-types/dolphin-binary-types.md | 0 .../data-types/dolphin-bit-string-types.md | 0 .../data-types/dolphin-bool-types.md | 0 .../data-types/dolphin-character-types.md | 0 .../data-types/dolphin-data-types.md | 0 .../data-types/dolphin-date-time-types.md | 0 .../data-types/dolphin-enumeration-types.md | 0 .../data-types/dolphin-numeric-types.md | 0 .../data-types/dolphin-type-conversion.md | 0 .../sql-reference/dolphin-alias.md | 0 .../sql-reference/dolphin-dcl-syntax.md | 0 .../sql-reference/dolphin-ddl-syntax.md | 0 .../sql-reference/dolphin-dml-syntax.md | 0 .../sql-reference/dolphin-keywords.md | 0 .../sql-reference/dolphin-sql-reference.md | 0 .../dolphin-conditional-expressions.md | 0 .../expressions/dolphin-expressions.md | 0 .../dolphin-advisory-lock-functions.md | 0 .../dolphin-aggregate-functions.md | 0 ...phin-arithmetic-functions-and-operators.md | 0 .../dolphin-assignment-operators.md | 0 .../dolphin-b-compatible-database-lock.md | 0 ...phin-bit-string-functions-and-operators.md | 0 ...cter-processing-functions-and-operators.md | 0 .../dolphin-comment-operators.md | 0 .../dolphin-compatible-json-operators.md | 0 ...hin-compatible-operators-and-operations.md | 0 ...olphin-conditional-expression-functions.md | 0 ...time-processing-functions-and-operators.md | 0 .../dolphin-functions-and-operators.md | 0 ...phin-json-jsonb-functions-and-operators.md | 0 .../dolphin-logical-operators.md | 0 ...network-address-functions-and-operators.md | 0 .../dolphin-password-function.md | 0 .../dolphin-system-information-functions.md | 0 .../dolphin-type-conversion-functions.md | 0 .../sql-syntax/dolphin-alter-database.md | 0 .../sql-syntax/dolphin-alter-function.md | 0 .../sql-syntax/dolphin-alter-procedure.md | 0 .../sql-syntax/dolphin-alter-server.md | 0 .../dolphin-alter-table-partition.md | 0 .../sql-syntax/dolphin-alter-table.md | 0 .../sql-syntax/dolphin-alter-tablespace.md | 0 .../sql-syntax/dolphin-alter-view.md | 0 .../sql-syntax/dolphin-analyze-analyse.md | 0 .../sql-reference/sql-syntax/dolphin-ast.md | 0 .../sql-reference/sql-syntax/dolphin-call.md | 0 .../sql-syntax/dolphin-checksum-table.md | 0 .../sql-syntax/dolphin-create-database.md | 0 .../sql-syntax/dolphin-create-function.md | 0 .../sql-syntax/dolphin-create-index.md | 0 .../sql-syntax/dolphin-create-procedure.md | 0 .../sql-syntax/dolphin-create-server.md | 0 .../sql-syntax/dolphin-create-table-as.md | 0 .../dolphin-create-table-partition.md | 0 .../sql-syntax/dolphin-create-table.md | 0 .../sql-syntax/dolphin-create-tablespace.md | 0 .../sql-syntax/dolphin-create-trigger.md | 0 .../sql-syntax/dolphin-create-view.md | 0 .../sql-syntax/dolphin-describe-table.md | 0 .../sql-reference/sql-syntax/dolphin-do.md | 0 .../sql-syntax/dolphin-drop-database.md | 0 .../sql-syntax/dolphin-drop-index.md | 0 .../sql-syntax/dolphin-drop-tablespace.md | 0 .../sql-syntax/dolphin-execute.md | 0 .../sql-syntax/dolphin-explain.md | 0 .../sql-syntax/dolphin-flush-binary-logs.md | 0 .../sql-syntax/dolphin-grant-revoke-proxy.md | 0 .../sql-reference/sql-syntax/dolphin-grant.md | 0 .../sql-syntax/dolphin-insert.md | 0 .../sql-reference/sql-syntax/dolphin-kill.md | 0 .../sql-syntax/dolphin-load-data.md | 0 .../sql-syntax/dolphin-optimize-table.md | 0 .../sql-syntax/dolphin-prepare.md | 0 .../sql-syntax/dolphin-rename-table.md | 0 .../sql-syntax/dolphin-rename-user.md | 0 .../sql-syntax/dolphin-revoke.md | 0 .../sql-syntax/dolphin-select-hint.md | 0 .../sql-syntax/dolphin-select.md | 0 .../sql-syntax/dolphin-set-charset.md | 0 .../sql-syntax/dolphin-set-password.md | 0 .../sql-syntax/dolphin-show-character-set.md | 0 .../sql-syntax/dolphin-show-collation.md | 0 .../sql-syntax/dolphin-show-columns.md | 0 .../dolphin-show-create-database.md | 0 .../dolphin-show-create-function.md | 0 .../dolphin-show-create-procedure.md | 0 .../sql-syntax/dolphin-show-create-table.md | 0 .../sql-syntax/dolphin-show-create-trigger.md | 0 .../sql-syntax/dolphin-show-create-view.md | 0 .../sql-syntax/dolphin-show-databases.md | 0 .../sql-syntax/dolphin-show-engines.md | 0 .../dolphin-show-function-status.md | 0 .../sql-syntax/dolphin-show-grants.md | 0 .../sql-syntax/dolphin-show-index.md | 0 .../sql-syntax/dolphin-show-master-status.md | 0 .../sql-syntax/dolphin-show-open-tables.md | 0 .../sql-syntax/dolphin-show-plugins.md | 0 .../sql-syntax/dolphin-show-privileges.md | 0 .../dolphin-show-procedure-status.md | 0 .../sql-syntax/dolphin-show-processlist.md | 0 .../sql-syntax/dolphin-show-slave-hosts.md | 0 .../sql-syntax/dolphin-show-slave-status.md | 0 .../sql-syntax/dolphin-show-status.md | 0 .../sql-syntax/dolphin-show-table-status.md | 0 .../sql-syntax/dolphin-show-tables.md | 0 .../sql-syntax/dolphin-show-triggers.md | 0 .../sql-syntax/dolphin-show-variables.md | 0 .../sql-syntax/dolphin-show-warnings.md | 0 .../sql-syntax/dolphin-sql-syntax.md | 0 .../sql-syntax/dolphin-update.md | 0 .../sql-syntax/dolphin-use-db-name.md | 0 .../dolphin-assignment-statements.md | 0 .../dolphin-basic-statements.md | 0 .../dolphin-stored-procedures.md | 0 .../system-views/dolphin-INDEX_STATISTIC.md | 0 ...RMANCE_SCHEMA.EVENTS_STATEMENTS_CURRENT.md | 0 ...RMANCE_SCHEMA.EVENTS_STATEMENTS_HISTORY.md | 0 ...EMA.EVENTS_STATEMENTS_SUMMARY_BY_DIGEST.md | 0 ...PERFORMANCE_SCHEMA.EVENTS_WAITS_CURRENT.md | 0 ...ENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.md | 0 ...ORMANCE_SCHEMA.FILE_SUMMARY_BY_INSTANCE.md | 0 ...A.TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE.md | 0 ..._SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_TABLE.md | 0 .../dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md | 0 .../system-views/dolphin-system-views.md | 0 .../migrating-data/data-check.md | 0 .../migrating-data/full-migration.md | 0 .../migrating-data/incremental-migration.md | 0 .../migrating-data-from-mysql-to-mogdb.md | 0 .../migrating-data/quick-mysql-migration.md | 0 .../migrating-data/reverse-migration.md | 0 .../mysql-compatible-description.md | 0 .../partition-management.md | 0 .../benefits-of-partition-pruning.md | 0 .../dynamic-partition-pruning.md | 0 ...whether-partition-pruning-has-been-used.md | 0 ...-that-can-be-used-for-partition-pruning.md | 0 .../partition-pruning/partition-pruning.md | 0 .../static-partition-pruning.md | 0 ...ns-for-choosing-a-partitioning-strategy.md | 0 .../when-to-use-hash-partitioning.md | 0 .../when-to-use-list-partitioning.md | 0 .../when-to-use-range-partitioning.md | 0 .../plpgsql/1-1-plpgsql-overview.md | 0 .../plpgsql/1-10-other-statements.md | 0 .../developer-guide/plpgsql/1-11-cursors.md | 0 .../plpgsql/1-12-retry-management.md | 0 .../developer-guide/plpgsql/1-13-debugging.md | 0 .../developer-guide/plpgsql/1-14-package.md | 0 .../developer-guide/plpgsql/1-2-data-types.md | 0 .../plpgsql/1-3-data-type-conversion.md | 0 .../plpgsql/1-4-arrays-and-records.md | 0 .../plpgsql/1-5-declare-syntax.md | 0 .../plpgsql/1-6-basic-statements.md | 0 .../plpgsql/1-7-dynamic-statements.md | 0 .../plpgsql/1-8-control-statements.md | 0 .../plpgsql/1-9-transaction-management.md | 0 .../advanced-packages/advanced-packages.md | 0 .../basic-interfaces/PKG_SERVICE.md | 0 .../basic-interfaces/basic-interfaces.md | 0 .../scheduled-jobs/pkg-service.md | 0 .../scheduled-jobs/scheduled-jobs.md | 0 .../developer-guide/user-defined-functions.md | 0 .../faqs/application-development-faqs.md | 0 .../faqs/deployment-and-maintenance-faqs.md | 0 .../zh/docs-mogdb/{v5.1 => v6.0}/faqs/faqs.md | 0 .../faqs/high-availability-faqs.md | 0 .../{v5.1 => v6.0}/faqs/migration-faqs.md | 0 .../{v5.1 => v6.0}/faqs/product-faqs.md | 0 .../{v5.1 => v6.0}/faqs/upgrade-faqs.md | 0 .../zh/docs-mogdb/{v5.1 => v6.0}/glossary.md | 0 .../cluster-management/cluster-management.md | 0 .../cm-configuration-parameter/cm-cm_agent.md | 0 .../cm-cm_server.md | 0 .../cm-configuration-parameter.md | 0 .../feature-introduction.md | 0 .../introduction-to-cm_ctl-tool.md | 0 .../introduction-to-cm_persist.md | 0 ...to-installation-and-uninstallation-tool.md | 0 .../manual-configuration-of-vip.md | 0 .../cluster-management/safety-design.md | 0 .../high-available-dcf.md | 0 .../high-available-guide.md | 0 .../docker-installation.md | 0 .../installation-guide/installation-guide.md | 0 .../environment-requirement.md | 0 .../installation-preparation.md | 0 .../os-configuration.md | 0 .../installation-guide/manual-installation.md | 0 .../ptk-based-installation.md | 0 .../recommended-parameter-settings.md | 0 .../mogeaver/mogeaver-overview.md | 0 .../mogeaver/mogeaver-release-notes.md | 0 .../{v5.1 => v6.0}/mogeaver/mogeaver.md | 0 .../zh/docs-mogdb/{v5.1 => v6.0}/overview.md | 0 .../TPCC-performance-tuning-guide.md | 0 .../performance-tuning/performance-tuning.md | 0 .../experience-in-rewriting-sql-statements.md | 0 .../sql-tuning/hint-based-tuning.md | 0 .../introduction-to-the-sql-execution-plan.md | 0 .../sql-tuning/query-execution-process.md | 0 ...etting-key-parameters-during-sql-tuning.md | 0 ...iewing-and-modifying-a-table-definition.md | 0 .../sql-tuning/sql-tuning-optimizer.md | 0 .../sql-tuning/sql-tuning.md | 0 .../sql-tuning/tuning-process.md | 0 .../typical-sql-optimization-methods.md | 0 .../sql-tuning/updating-statistics.md | 0 .../system-tuning/configuring-llvm.md | 0 .../system-tuning/configuring-smp.md | 0 .../system-tuning/configuring-ustore.md | 0 .../configuring-vector-engine.md | 0 .../optimizing-database-memory-parameters.md | 0 .../optimizing-database-parameters.md | 0 .../system-tuning/optimizing-os-parameters.md | 0 .../resource-load-management-overview.md | 0 .../resource-load-management.md | 0 .../creating-resource-pool.md | 0 .../enabling-resource-load-management.md | 0 .../resource-management-preparations.md | 0 .../resource-planning.md | 0 .../setting-control-group.md | 0 .../system-tuning/system-tuning.md | 0 .../performance-tuning/wdr/wdr-report.md | 0 .../wdr/wdr-snapshot-schema.md | 0 .../performance-tuning/wdr/wdr.md | 0 .../container-based-installation.md | 0 .../installation-on-a-single-node.md | 0 .../quick-start/mogdb-access/mogdb-access.md | 0 .../use-cli-to-access-mogdb/gsql.md | 0 .../use-cli-to-access-mogdb/pgcli.md | 0 .../use-cli-to-access-mogdb.md | 0 .../use-gui-tools-to-access-mogdb/dbeaver.md | 0 .../mogeaver-usage.md | 0 .../use-gui-tools-to-access-mogdb.md | 0 .../use-middleware-to-access-mogdb.md | 0 ...-configures-mogdb-data-source-reference.md | 0 ...-configures-mogdb-data-source-reference.md | 0 .../adonet.md | 0 .../c-cpp.md | 0 .../go.md | 0 .../java.md | 0 .../nodejs.md | 0 .../python.md | 0 .../rust.md | 0 ...se-programming-language-to-access-mogdb.md | 0 .../quick-start/mogdb-playground.md | 0 .../{v5.1 => v6.0}/quick-start/mogila.md | 0 .../{v5.1 => v6.0}/quick-start/quick-start.md | 0 ...ollation-for-character-type-expressions.md | 0 ...ts-and-collation-for-client-connections.md | 0 ...racter-sets-and-collation-merging-rules.md | 0 .../character-sets-and-collation.md | 0 ...lumn-level-character-sets-and-collation.md | 0 ...base-level-character-sets-and-collation.md | 0 ...hema-level-character-sets-and-collation.md | 0 ...able-level-character-sets-and-collation.md | 0 .../GAUSS-00001-GAUSS-00100.md | 0 .../GAUSS-00101-GAUSS-00200.md | 0 .../GAUSS-00201-GAUSS-00300.md | 0 .../GAUSS-00301-GAUSS-00400.md | 0 .../GAUSS-00401-GAUSS-00500.md | 0 .../GAUSS-00501-GAUSS-00600.md | 0 .../GAUSS-00601-GAUSS-00700.md | 0 .../GAUSS-00701-GAUSS-00800.md | 0 .../GAUSS-00801-GAUSS-00900.md | 0 .../GAUSS-00901-GAUSS-01000.md | 0 .../GAUSS-01001-GAUSS-01100.md | 0 .../GAUSS-01101-GAUSS-01200.md | 0 .../GAUSS-01201-GAUSS-01300.md | 0 .../GAUSS-01301-GAUSS-01400.md | 0 .../GAUSS-01401-GAUSS-01500.md | 0 .../GAUSS-01501-GAUSS-01600.md | 0 .../GAUSS-01601-GAUSS-01700.md | 0 .../GAUSS-01701-GAUSS-01800.md | 0 .../GAUSS-01801-GAUSS-01900.md | 0 .../GAUSS-01901-GAUSS-02000.md | 0 .../GAUSS-02001-GAUSS-02100.md | 0 .../GAUSS-02101-GAUSS-02200.md | 0 .../GAUSS-02201-GAUSS-02300.md | 0 .../GAUSS-02301-GAUSS-02400.md | 0 .../GAUSS-02401-GAUSS-02500.md | 0 .../GAUSS-02501-GAUSS-02600.md | 0 .../GAUSS-02601-GAUSS-02700.md | 0 .../GAUSS-02701-GAUSS-02800.md | 0 .../GAUSS-02801-GAUSS-02900.md | 0 .../GAUSS-02901-GAUSS-03000.md | 0 .../GAUSS-03001-GAUSS-03100.md | 0 .../GAUSS-03101-GAUSS-03200.md | 0 .../GAUSS-03201-GAUSS-03300.md | 0 .../GAUSS-03301-GAUSS-03400.md | 0 .../GAUSS-03401-GAUSS-03500.md | 0 .../GAUSS-03501-GAUSS-03600.md | 0 .../GAUSS-03601-GAUSS-03700.md | 0 .../GAUSS-03701-GAUSS-03800.md | 0 .../GAUSS-03801-GAUSS-03900.md | 0 .../GAUSS-03901-GAUSS-04000.md | 0 .../GAUSS-04001-GAUSS-04100.md | 0 .../GAUSS-04101-GAUSS-04200.md | 0 .../GAUSS-04201-GAUSS-04300.md | 0 .../GAUSS-04301-GAUSS-04400.md | 0 .../GAUSS-04401-GAUSS-04500.md | 0 .../GAUSS-04501-GAUSS-04600.md | 0 .../GAUSS-04601-GAUSS-04700.md | 0 .../GAUSS-04701-GAUSS-04800.md | 0 .../GAUSS-04801-GAUSS-04900.md | 0 .../GAUSS-04901-GAUSS-05000.md | 0 .../GAUSS-05001-GAUSS-05100.md | 0 .../GAUSS-05101-GAUSS-05200.md | 0 .../GAUSS-05201-GAUSS-05300.md | 0 .../GAUSS-05301-GAUSS-05400.md | 0 .../GAUSS-05401-GAUSS-05500.md | 0 .../GAUSS-05501-GAUSS-05600.md | 0 .../GAUSS-05601-GAUSS-05700.md | 0 .../GAUSS-05701-GAUSS-05800.md | 0 .../GAUSS-05801-GAUSS-05900.md | 0 .../GAUSS-05901-GAUSS-06000.md | 0 .../GAUSS-06001-GAUSS-06100.md | 0 .../GAUSS-06101-GAUSS-06200.md | 0 .../GAUSS-06201-GAUSS-06300.md | 0 .../GAUSS-06301-GAUSS-06400.md | 0 .../GAUSS-06401-GAUSS-06500.md | 0 .../GAUSS-06501-GAUSS-06600.md | 0 .../GAUSS-06601-GAUSS-06700.md | 0 .../GAUSS-06701-GAUSS-06800.md | 0 .../GAUSS-06801-GAUSS-06900.md | 0 .../GAUSS-06901-GAUSS-07000.md | 0 .../GAUSS-07001-GAUSS-07100.md | 0 .../GAUSS-07101-GAUSS-07200.md | 0 .../GAUSS-07201-GAUSS-07300.md | 0 .../GAUSS-07301-GAUSS-07400.md | 0 .../GAUSS-07401-GAUSS-07500.md | 0 .../GAUSS-50000-GAUSS-50999.md | 0 .../GAUSS-51000-GAUSS-51999.md | 0 .../GAUSS-52000-GAUSS-52999.md | 0 .../GAUSS-53000-GAUSS-53699.md | 0 .../class00-class21.md | 0 .../class0A-class0Z.md | 0 .../class22-class24.md | 0 .../class25-class40.md | 0 .../class2B-class2F.md | 0 .../class3B-class3F.md | 0 .../class42-class44.md | 0 .../class53-class58.md | 0 .../classCG-classTS.md | 0 .../classF0-classP0.md | 0 .../classXX-classYY.md | 0 .../description-of-sql-error-codes.md | 0 .../sqlstate-values-of-mogdb-cm-error-code.md | 0 .../sqlstate-values-of-mogdb-error-code.md | 0 .../error-code-reference.md | 0 .../third-party-library-error-codes.md | 0 .../error-log-reference.md | 0 .../kernel-error-message.md | 0 .../aggregate-functions.md | 0 .../ai-feature-functions.md | 0 .../array-functions-and-operators.md | 0 .../binary-string-functions-and-operators.md | 0 .../bit-string-functions-and-operators.md | 0 ...cter-processing-functions-and-operators.md | 0 .../comparison-operators.md | 0 .../conditional-expressions-functions.md | 0 ...a-damage-detection-and-repair-functions.md | 0 ...time-processing-functions-and-operators.md | 0 .../dynamic-data-masking-functions.md | 0 .../encrypted-equality-functions.md | 0 .../event-trigger-functions.md | 0 .../fault-injection-system-function.md | 0 .../functions-and-operators.md | 0 .../geometric-functions-and-operators.md | 0 .../global-syscache-feature-functions.md | 0 .../global-temporary-table-functions.md | 0 .../functions-and-operators/hash-function.md | 0 .../hll-functions-and-operators.md | 0 .../internal-functions-1.md | 0 .../internal-functions-2.md | 0 .../internal-functions/internal-functions.md | 0 .../functions-and-operators/json-functions.md | 0 .../ledger-database-functions.md | 0 .../logical-operators.md | 0 .../mathematical-functions-and-operators.md | 0 .../mode-matching-operators.md | 0 ...network-address-functions-and-operators.md | 0 .../obsolete-functions.md | 0 .../other-system-functions-1.md | 0 .../other-system-functions-2.md | 0 .../other-system-functions.md | 0 .../prompt-message-function.md | 0 .../range-functions-and-operators.md | 0 .../resource-pooling-functions.md | 0 .../security-functions.md | 0 .../sequence-functions.md | 0 .../set-returning-functions.md | 0 .../statistics-information-functions-1.md | 0 .../statistics-information-functions-2.md | 0 .../statistics-information-functions-3.md | 0 .../statistics-information-functions.md | 0 .../access-privilege-inquiry-function.md | 0 .../comment-information-functions.md | 0 .../other-function.md | 0 .../schema-visibility-inquiry-functions.md | 0 .../session-information-functions.md | 0 .../system-catalog-information-functions.md | 0 .../system-information-functions.md | 0 .../transaction-ids-and-snapshots.md | 0 .../advisory-lock-functions.md | 0 ...ackup-and-restoration-control-functions.md | 0 .../configuration-settings-functions.md | 0 .../database-object-functions.md | 0 .../logical-replication-functions.md | 0 .../other-functions.md | 0 .../row-store-compression-system-functions.md | 0 .../segment-page-storage-functions.md | 0 .../server-signal-functions.md | 0 .../snapshot-synchronization-functions.md | 0 .../system-management-functions.md | 0 .../undo-system-functions.md | 0 .../universal-file-access-functions.md | 0 .../text-search-functions-and-operators.md | 0 .../trigger-functions.md | 0 .../type-conversion-functions-1.md | 0 .../type-conversion-functions-2.md | 0 .../type-conversion-functions.md | 0 .../window-functions.md | 0 .../functions-and-operators/xml-functions.md | 0 .../guc-parameters/AI-features.md | 0 .../guc-parameters/DCF-parameters-settings.md | 0 .../guc-parameters/HyperLogLog.md | 0 .../guc-parameters/MogDB-transaction.md | 0 .../guc-parameters/alarm-detection.md | 0 .../guc-parameters/appendix.md | 0 .../guc-parameters/auditing/audit-switch.md | 0 .../guc-parameters/auditing/auditing.md | 0 .../auditing/operation-audit.md | 0 .../auditing/user-and-permission-audit.md | 0 .../guc-parameters/automatic-vacuuming.md | 0 .../guc-parameters/backend-compression.md | 0 .../backup-and-restoration-parameter.md | 0 .../guc-parameters/cm-parameters.md | 0 .../communication-library-parameters.md | 0 .../connection-and-authentication.md | 0 .../connection-settings.md | 0 .../security-and-authentication.md | 0 .../connection-pool-parameters.md | 0 .../default-settings-of-client-connection.md | 0 .../other-default-parameters.md | 0 .../statement-behavior.md | 0 .../zone-and-formatting.md | 0 .../guc-parameters/developer-options.md | 0 .../error-reporting-and-logging.md | 0 .../logging-content.md | 0 .../logging-destination.md | 0 .../logging-time.md | 0 .../using-csv-log-output.md | 0 .../guc-parameters/fault-tolerance.md | 0 .../guc-parameters/file-location.md | 0 .../guc-parameters/flashback.md | 0 .../global-syscache-parameters.md | 0 .../guc-parameters/global-temporary-table.md | 0 .../guc-parameters/guc-parameter-list.md | 0 .../guc-parameters/guc-parameter-usage.md | 0 .../guc-user-defined-functions.md | 0 .../ha-replication/ha-replication.md | 0 .../ha-replication/primary-server.md | 0 .../ha-replication/sending-server.md | 0 .../ha-replication/standby-server.md | 0 .../guc-parameters/huge-page-memory.md | 0 .../guc-parameters/load-management.md | 0 .../guc-parameters/lock-management.md | 0 .../miscellaneous-parameters.md | 0 .../reference-guide/guc-parameters/mot.md | 0 ...multi-level-cache-management-parameters.md | 0 ...o-efficient-data-compression-algorithms.md | 0 .../query-planning/genetic-query-optimizer.md | 0 .../optimizer-cost-constants.md | 0 .../optimizer-method-configuration.md | 0 .../query-planning/other-optimizer-options.md | 0 .../query-planning/query-planning.md | 0 .../reference-guide/guc-parameters/query.md | 0 .../reference-guide-guc-parameters.md | 0 ...on-parameters-of-two-database-instances.md | 0 .../guc-parameters/reserved-parameters.md | 0 .../asynchronous-io-operations.md | 0 .../resource-consumption/background-writer.md | 0 .../cost-based-vacuum-delay.md | 0 .../resource-consumption/disk-space.md | 0 .../kernel-resource-usage.md | 0 .../resource-consumption/memory.md | 0 .../resource-consumption.md | 0 .../resource-pooling-parameters.md | 0 .../guc-parameters/rollback-parameters.md | 0 .../guc-parameters/scheduled-task.md | 0 .../guc-parameters/security-configuration.md | 0 .../performance-statistics.md | 0 .../query-and-index-statistics-collector.md | 0 .../statistics-during-the-database-running.md | 0 .../system-performance-snapshot.md | 0 .../guc-parameters/thread-pool.md | 0 .../guc-parameters/upgrade-parameters.md | 0 .../compatibility-with-earlier-versions.md | 0 .../platform-and-client-compatibility.md | 0 .../version-and-platform-compatibility.md | 0 .../guc-parameters/wait-events.md | 0 .../write-ahead-log/archiving.md | 0 .../write-ahead-log/checkpoints.md | 0 .../write-ahead-log/log-replay.md | 0 .../write-ahead-log/settings.md | 0 .../write-ahead-log/write-ahead-log.md | 0 ...-parameters-supported-by-standby-server.md | 0 .../reference-guide/reference-guide.md | 0 .../schema/DB4AI-schema/DB4AI-schema.md | 0 .../DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md | 0 .../DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md | 0 .../DB4AI.CREATE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI.MANAGE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md | 0 .../DB4AI.PREPARE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md | 0 .../DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md | 0 .../DB4AI.PURGE_SNAPSHOT_INTERNAL.md | 0 .../DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md | 0 .../schema/DB4AI-schema/DB4AI.SNAPSHOT.md | 0 .../schema/DBE_PERF/DBE_PERF.md | 0 .../schema/DBE_PERF/cache-io/Cache-IO.md | 0 .../cache-io/GLOBAL_STATIO_ALL_INDEXES.md | 0 .../cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md | 0 .../cache-io/GLOBAL_STATIO_ALL_TABLES.md | 0 .../cache-io/GLOBAL_STATIO_SYS_INDEXES.md | 0 .../cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md | 0 .../cache-io/GLOBAL_STATIO_SYS_TABLES.md | 0 .../cache-io/GLOBAL_STATIO_USER_INDEXES.md | 0 .../cache-io/GLOBAL_STATIO_USER_SEQUENCES.md | 0 .../cache-io/GLOBAL_STATIO_USER_TABLES.md | 0 .../DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md | 0 .../cache-io/GLOBAL_STAT_SESSION_CU.md | 0 .../DBE_PERF/cache-io/STATIO_ALL_INDEXES.md | 0 .../DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md | 0 .../DBE_PERF/cache-io/STATIO_ALL_TABLES.md | 0 .../DBE_PERF/cache-io/STATIO_SYS_INDEXES.md | 0 .../DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md | 0 .../DBE_PERF/cache-io/STATIO_SYS_TABLES.md | 0 .../DBE_PERF/cache-io/STATIO_USER_INDEXES.md | 0 .../cache-io/STATIO_USER_SEQUENCES.md | 0 .../DBE_PERF/cache-io/STATIO_USER_TABLES.md | 0 .../cache-io/SUMMARY_STATIO_ALL_INDEXES.md | 0 .../cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md | 0 .../cache-io/SUMMARY_STATIO_ALL_TABLES.md | 0 .../cache-io/SUMMARY_STATIO_SYS_INDEXES.md | 0 .../cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md | 0 .../cache-io/SUMMARY_STATIO_SYS_TABLES.md | 0 .../cache-io/SUMMARY_STATIO_USER_INDEXES.md | 0 .../cache-io/SUMMARY_STATIO_USER_SEQUENCES.md | 0 .../cache-io/SUMMARY_STATIO_USER_TABLES.md | 0 .../DBE_PERF/configuration/CONFIG_SETTINGS.md | 0 .../configuration/GLOBAL_CONFIG_SETTINGS.md | 0 .../DBE_PERF/configuration/configuration.md | 0 .../schema/DBE_PERF/file/FILE_IOSTAT.md | 0 .../schema/DBE_PERF/file/FILE_REDO_IOSTAT.md | 0 .../DBE_PERF/file/GLOBAL_FILE_IOSTAT.md | 0 .../DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md | 0 .../schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md | 0 .../schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md | 0 .../DBE_PERF/file/SUMMARY_FILE_IOSTAT.md | 0 .../DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md | 0 .../DBE_PERF/file/SUMMARY_REL_IOSTAT.md | 0 .../schema/DBE_PERF/file/file.md | 0 .../GLOBAL_PLANCACHE_CLEAN.md | 0 .../GLOBAL_PLANCACHE_STATUS.md | 0 .../global-plancache/global-plancache.md | 0 .../DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md | 0 .../schema/DBE_PERF/instance/INSTANCE_TIME.md | 0 .../schema/DBE_PERF/instance/instance.md | 0 .../schema/DBE_PERF/lock/GLOBAL_LOCKS.md | 0 .../schema/DBE_PERF/lock/LOCKS.md | 0 .../schema/DBE_PERF/lock/lock.md | 0 .../memory/GLOBAL_MEMORY_NODE_DETAIL.md | 0 .../memory/GLOBAL_SHARED_MEMORY_DETAIL.md | 0 .../DBE_PERF/memory/MEMORY_NODE_DETAIL.md | 0 .../schema/DBE_PERF/memory/memory-schema.md | 0 .../object/GLOBAL_STAT_ALL_INDEXES.md | 0 .../DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md | 0 .../DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md | 0 .../DBE_PERF/object/GLOBAL_STAT_DATABASE.md | 0 .../object/GLOBAL_STAT_DATABASE_CONFLICTS.md | 0 .../object/GLOBAL_STAT_SYS_INDEXES.md | 0 .../DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md | 0 .../object/GLOBAL_STAT_USER_FUNCTIONS.md | 0 .../object/GLOBAL_STAT_USER_INDEXES.md | 0 .../object/GLOBAL_STAT_USER_TABLES.md | 0 .../object/GLOBAL_STAT_XACT_ALL_TABLES.md | 0 .../object/GLOBAL_STAT_XACT_SYS_TABLES.md | 0 .../object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md | 0 .../object/GLOBAL_STAT_XACT_USER_TABLES.md | 0 .../DBE_PERF/object/STAT_ALL_INDEXES.md | 0 .../schema/DBE_PERF/object/STAT_ALL_TABLES.md | 0 .../schema/DBE_PERF/object/STAT_BAD_BLOCK.md | 0 .../schema/DBE_PERF/object/STAT_DATABASE.md | 0 .../object/STAT_DATABASE_CONFLICTS.md | 0 .../DBE_PERF/object/STAT_SYS_INDEXES.md | 0 .../schema/DBE_PERF/object/STAT_SYS_TABLES.md | 0 .../DBE_PERF/object/STAT_USER_FUNCTIONS.md | 0 .../DBE_PERF/object/STAT_USER_INDEXES.md | 0 .../DBE_PERF/object/STAT_USER_TABLES.md | 0 .../DBE_PERF/object/STAT_XACT_ALL_TABLES.md | 0 .../DBE_PERF/object/STAT_XACT_SYS_TABLES.md | 0 .../object/STAT_XACT_USER_FUNCTIONS.md | 0 .../DBE_PERF/object/STAT_XACT_USER_TABLES.md | 0 .../object/SUMMARY_STAT_ALL_INDEXES.md | 0 .../object/SUMMARY_STAT_ALL_TABLES.md | 0 .../DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md | 0 .../DBE_PERF/object/SUMMARY_STAT_DATABASE.md | 0 .../object/SUMMARY_STAT_DATABASE_CONFLICTS.md | 0 .../object/SUMMARY_STAT_SYS_INDEXES.md | 0 .../object/SUMMARY_STAT_SYS_TABLES.md | 0 .../object/SUMMARY_STAT_USER_FUNCTIONS.md | 0 .../object/SUMMARY_STAT_USER_INDEXES.md | 0 .../object/SUMMARY_STAT_USER_TABLES.md | 0 .../object/SUMMARY_STAT_XACT_ALL_TABLES.md | 0 .../object/SUMMARY_STAT_XACT_SYS_TABLES.md | 0 .../SUMMARY_STAT_XACT_USER_FUNCTIONS.md | 0 .../object/SUMMARY_STAT_XACT_USER_TABLES.md | 0 .../schema/DBE_PERF/object/object-schema.md | 0 .../operator/GLOBAL_OPERATOR_HISTORY.md | 0 .../operator/GLOBAL_OPERATOR_HISTORY_TABLE.md | 0 .../operator/GLOBAL_OPERATOR_RUNTIME.md | 0 .../DBE_PERF/operator/OPERATOR_HISTORY.md | 0 .../operator/OPERATOR_HISTORY_TABLE.md | 0 .../DBE_PERF/operator/OPERATOR_RUNTIME.md | 0 .../DBE_PERF/operator/operator-schema.md | 0 .../schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md | 0 .../schema/DBE_PERF/os/GLOBAL_OS_THREADS.md | 0 .../schema/DBE_PERF/os/OS_RUNTIME.md | 0 .../schema/DBE_PERF/os/OS_THREADS.md | 0 .../schema/DBE_PERF/os/os-schema.md | 0 .../query/GLOBAL_SLOW_QUERY_HISTORY.md | 0 .../DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md | 0 .../query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md | 0 .../GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md | 0 .../query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md | 0 .../DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md | 0 .../DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md | 0 .../DBE_PERF/query/GS_SLOW_QUERY_INFO.md | 0 .../schema/DBE_PERF/query/STATEMENT.md | 0 .../query/STATEMENT_COMPLEX_HISTORY.md | 0 .../query/STATEMENT_COMPLEX_HISTORY_TABLE.md | 0 .../query/STATEMENT_COMPLEX_RUNTIME.md | 0 .../schema/DBE_PERF/query/STATEMENT_COUNT.md | 0 .../DBE_PERF/query/STATEMENT_HISTORY_query.md | 0 .../STATEMENT_RESPONSETIME_PERCENTILE.md | 0 .../STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md | 0 .../DBE_PERF/query/SUMMARY_STATEMENT.md | 0 .../DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md | 0 .../schema/DBE_PERF/query/query-schema.md | 0 .../schema/DBE_PERF/rto/RTO-RPO.md | 0 .../schema/DBE_PERF/rto/global_rto_status.md | 0 .../global_streaming_hadr_rto_and_rpo_stat.md | 0 .../rto/gs_hadr_local_rto_and_rpo_stat.md | 0 .../session-thread/GLOBAL_SESSION_MEMORY.md | 0 .../GLOBAL_SESSION_MEMORY_DETAIL.md | 0 .../session-thread/GLOBAL_SESSION_STAT.md | 0 .../GLOBAL_SESSION_STAT_ACTIVITY.md | 0 .../session-thread/GLOBAL_SESSION_TIME.md | 0 .../GLOBAL_THREADPOOL_STATUS.md | 0 .../GLOBAL_THREAD_WAIT_STATUS.md | 0 .../session-thread/LOCAL_ACTIVE_SESSION.md | 0 .../session-thread/LOCAL_THREADPOOL_STATUS.md | 0 .../session-thread/SESSION_CPU_RUNTIME.md | 0 .../DBE_PERF/session-thread/SESSION_MEMORY.md | 0 .../session-thread/SESSION_MEMORY_DETAIL.md | 0 .../session-thread/SESSION_MEMORY_RUNTIME.md | 0 .../DBE_PERF/session-thread/SESSION_STAT.md | 0 .../session-thread/SESSION_STAT_ACTIVITY.md | 0 .../DBE_PERF/session-thread/SESSION_TIME.md | 0 .../STATEMENT_IOSTAT_COMPLEX_RUNTIME.md | 0 .../session-thread/THREAD_WAIT_STATUS.md | 0 .../DBE_PERF/session-thread/session-thread.md | 0 .../GLOBAL_TRANSACTIONS_PREPARED_XACTS.md | 0 .../GLOBAL_TRANSACTIONS_RUNNING_XACTS.md | 0 .../SUMMARY_TRANSACTIONS_PREPARED_XACTS.md | 0 .../SUMMARY_TRANSACTIONS_RUNNING_XACTS.md | 0 .../TRANSACTIONS_PREPARED_XACTS.md | 0 .../transaction/TRANSACTIONS_RUNNING_XACTS.md | 0 .../transaction/transaction-schema.md | 0 .../schema/DBE_PERF/utility/BGWRITER_STAT.md | 0 .../DBE_PERF/utility/CLASS_VITAL_INFO.md | 0 .../DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md | 0 .../utility/GLOBAL_CANDIDATE_STATUS.md | 0 .../DBE_PERF/utility/GLOBAL_CKPT_STATUS.md | 0 .../utility/GLOBAL_DOUBLE_WRITE_STATUS.md | 0 .../utility/GLOBAL_GET_BGWRITER_STATUS.md | 0 .../utility/GLOBAL_PAGEWRITER_STATUS.md | 0 .../utility/GLOBAL_RECORD_RESET_TIME.md | 0 .../utility/GLOBAL_RECOVERY_STATUS.md | 0 .../DBE_PERF/utility/GLOBAL_REDO_STATUS.md | 0 .../utility/GLOBAL_REPLICATION_SLOTS.md | 0 .../utility/GLOBAL_REPLICATION_STAT.md | 0 .../utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md | 0 .../DBE_PERF/utility/REPLICATION_SLOTS.md | 0 .../DBE_PERF/utility/REPLICATION_STAT.md | 0 .../DBE_PERF/utility/SUMMARY_USER_LOGIN.md | 0 .../schema/DBE_PERF/utility/USER_LOGIN.md | 0 .../schema/DBE_PERF/utility/utility.md | 0 .../wait-events/GLOBAL_WAIT_EVENTS.md | 0 .../DBE_PERF/wait-events/WAIT_EVENTS.md | 0 .../wait-events/dbe-perf-wait-events.md | 0 .../WLM_USER_RESOURCE_CONFIG.md | 0 .../WLM_USER_RESOURCE_RUNTIME.md | 0 .../workload-manager/workload-manager.md | 0 .../workload/GLOBAL_USER_TRANSACTION.md | 0 .../workload/GLOBAL_WORKLOAD_TRANSACTION.md | 0 .../workload/SUMMARY_WORKLOAD_SQL_COUNT.md | 0 .../SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md | 0 .../workload/SUMMARY_WORKLOAD_TRANSACTION.md | 0 .../DBE_PERF/workload/USER_TRANSACTION.md | 0 .../DBE_PERF/workload/WORKLOAD_SQL_COUNT.md | 0 .../workload/WORKLOAD_SQL_ELAPSE_TIME.md | 0 .../DBE_PERF/workload/WORKLOAD_TRANSACTION.md | 0 .../DBE_PERF/workload/workload-schema.md | 0 .../DBE_PLDEBUGGER-schema.md | 0 .../DBE_PLDEBUGGER.abort.md | 0 .../DBE_PLDEBUGGER.add_breakpoint.md | 0 .../DBE_PLDEBUGGER.attach.md | 0 .../DBE_PLDEBUGGER.backtrace.md | 0 .../DBE_PLDEBUGGER.continue.md | 0 .../DBE_PLDEBUGGER.delete_breakpoint.md | 0 .../DBE_PLDEBUGGER.disable_breakpoint.md | 0 .../DBE_PLDEBUGGER.enable_breakpoint.md | 0 .../DBE_PLDEBUGGER.finish.md | 0 .../DBE_PLDEBUGGER.info_breakpoints.md | 0 .../DBE_PLDEBUGGER.info_code.md | 0 .../DBE_PLDEBUGGER.info_locals.md | 0 .../DBE_PLDEBUGGER.local_debug_server_info.md | 0 .../DBE_PLDEBUGGER.next.md | 0 .../DBE_PLDEBUGGER.print_var.md | 0 .../DBE_PLDEBUGGER.set_var.md | 0 .../DBE_PLDEBUGGER.step.md | 0 .../DBE_PLDEBUGGER.turn_off.md | 0 .../DBE_PLDEBUGGER.turn_on.md | 0 .../DBE_PLDEVELOPER.gs_errors.md | 0 .../DBE_PLDEVELOPER.gs_source.md | 0 .../schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md | 0 .../DBE_SQL_UTIL-Schema.md | 0 .../DBE_SQL_UTIL.create_abort_sql_patch.md | 0 .../DBE_SQL_UTIL.create_hint_sql_patch.md | 0 .../DBE_SQL_UTIL.disable_sql_patch.md | 0 .../DBE_SQL_UTIL.drop_sql_patch.md | 0 .../DBE_SQL_UTIL.enable_sql_patch.md | 0 .../DBE_SQL_UTIL.show_sql_patch.md | 0 .../INFORMATION_SCHEMA_CATALOG_NAME.md | 0 .../_PG_FOREIGN_DATA_WRAPPERS.md | 0 .../information-schema/_PG_FOREIGN_SERVERS.md | 0 .../information-schema/_PG_FOREIGN_TABLES.md | 0 .../_PG_FOREIGN_TABLE_COLUMNS.md | 0 .../information-schema/_PG_USER_MAPPINGS.md | 0 .../information-schema/information-schema.md | 0 .../reference-guide/schema/schema.md | 0 .../reference-guide/sql-reference/alias.md | 0 .../appendix/extended-functions.md | 0 .../sql-reference/appendix/extended-syntax.md | 0 .../gin-indexes/gin-indexes-introduction.md | 0 .../appendix/gin-indexes/gin-indexes.md | 0 .../gin-indexes/gin-tips-and-tricks.md | 0 .../appendix/gin-indexes/implementation.md | 0 .../appendix/gin-indexes/scalability.md | 0 .../appendix/sql-reference-appendix.md | 0 .../sql-reference/constant-and-macro.md | 0 .../sql-reference/controlling-transactions.md | 0 .../sql-reference/dcl-syntax-overview.md | 0 .../sql-reference/ddl-syntax-overview.md | 0 .../sql-reference/dml-syntax-overview.md | 0 .../expressions/array-expressions.md | 0 .../expressions/condition-expressions.md | 0 .../sql-reference/expressions/expressions.md | 0 .../expressions/row-expressions.md | 0 .../expressions/simple-expressions.md | 0 .../expressions/subquery-expressions.md | 0 .../additional-features.md | 0 .../gathering-document-statistics.md | 0 .../manipulating-queries.md | 0 .../manipulating-tsvector.md | 0 .../additional-features/rewriting-queries.md | 0 .../configuration-examples.md | 0 .../controlling-text-search.md | 0 .../highlighting-results.md | 0 .../parsing-documents.md | 0 .../parsing-queries.md | 0 .../ranking-search-results.md | 0 .../dictionaries/dictionaries-overview.md | 0 .../dictionaries/dictionaries.md | 0 .../dictionaries/ispell-dictionary.md | 0 .../dictionaries/simple-dictionary.md | 0 .../dictionaries/snowball-dictionary.md | 0 .../dictionaries/stop-words.md | 0 .../dictionaries/synonym-dictionary.md | 0 .../dictionaries/thesaurus-dictionary.md | 0 .../full-text-search/full-text-search.md | 0 .../introduction/basic-text-matching.md | 0 .../introduction/configurations.md | 0 .../introduction/full-text-retrieval.md | 0 .../full-text-search-introduction.md | 0 .../introduction/what-is-a-document.md | 0 .../full-text-search/limitations.md | 0 .../sql-reference/full-text-search/parser.md | 0 .../constraints-on-index-use.md | 0 .../tables-and-indexes/creating-an-index.md | 0 .../tables-and-indexes/searching-a-table.md | 0 .../tables-and-indexes/tables-and-indexes.md | 0 .../testing-a-configuration.md | 0 .../testing-a-dictionary.md | 0 .../testing-a-parser.md | 0 .../testing-and-debugging-text-search.md | 0 .../sql-reference/keywords/keywords-1.md | 0 .../sql-reference/keywords/keywords-2.md | 0 .../sql-reference/keywords/keywords.md | 0 .../sql-reference/mogdb-sql.md | 0 .../sql-reference/ordinary-table.md | 0 .../sql-reference/partition-table.md | 0 .../sql-reference-anonymous-block.md | 0 .../sql-reference/sql-reference-contraints.md | 0 .../sql-reference/sql-reference-cursor.md | 0 .../sql-reference/sql-reference-index.md | 0 .../sql-reference/sql-reference-llvm.md | 0 .../sql-reference/sql-reference-lock.md | 0 .../sql-reference/sql-reference-trigger.md | 0 .../sql-reference/sql-reference.md | 0 .../sql-reference/sql-syntax-format.md | 0 .../sql-reference/sub-query.md | 0 .../sql-reference/system-operation.md | 0 .../transaction/sql-reference-transaction.md | 0 .../transaction/transaction-control.md | 0 .../transaction/transaction-management.md | 0 .../sql-reference/type-base-value.md | 0 .../type-conversion/functions.md | 0 .../type-conversion/operators.md | 0 .../type-conversion-overview.md | 0 .../type-conversion/type-conversion.md | 0 .../union-case-and-related-constructs.md | 0 .../type-conversion/value-storage.md | 0 .../reference-guide/sql-syntax/ABORT.md | 0 .../sql-syntax/ALTER-AGGREGATE.md | 0 .../sql-syntax/ALTER-AUDIT-POLICY.md | 0 .../sql-syntax/ALTER-DATA-SOURCE.md | 0 .../sql-syntax/ALTER-DATABASE.md | 0 .../sql-syntax/ALTER-DEFAULT-PRIVILEGES.md | 0 .../sql-syntax/ALTER-DIRECTORY.md | 0 .../sql-syntax/ALTER-EVENT-TRIGGER.md | 0 .../reference-guide/sql-syntax/ALTER-EVENT.md | 0 .../sql-syntax/ALTER-EXTENSION.md | 0 .../sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md | 0 .../sql-syntax/ALTER-FOREIGN-TABLE.md | 0 .../sql-syntax/ALTER-FUNCTION.md | 0 .../sql-syntax/ALTER-GLOBAL-CONFIGURATION.md | 0 .../reference-guide/sql-syntax/ALTER-GROUP.md | 0 .../reference-guide/sql-syntax/ALTER-INDEX.md | 0 .../sql-syntax/ALTER-LANGUAGE.md | 0 .../sql-syntax/ALTER-LARGE-OBJECT.md | 0 .../sql-syntax/ALTER-MASKING-POLICY.md | 0 .../sql-syntax/ALTER-MATERIALIZED-VIEW.md | 0 .../sql-syntax/ALTER-OPERATOR.md | 0 .../sql-syntax/ALTER-PACKAGE.md | 0 .../sql-syntax/ALTER-PROCEDURE.md | 0 .../sql-syntax/ALTER-PUBLICATION.md | 0 .../sql-syntax/ALTER-RESOURCE-LABEL.md | 0 .../sql-syntax/ALTER-RESOURCE-POOL.md | 0 .../reference-guide/sql-syntax/ALTER-ROLE.md | 0 .../ALTER-ROW-LEVEL-SECURITY-POLICY.md | 0 .../reference-guide/sql-syntax/ALTER-RULE.md | 0 .../sql-syntax/ALTER-SCHEMA.md | 0 .../sql-syntax/ALTER-SEQUENCE.md | 0 .../sql-syntax/ALTER-SERVER.md | 0 .../sql-syntax/ALTER-SESSION.md | 0 .../sql-syntax/ALTER-SUBSCRIPTION.md | 0 .../sql-syntax/ALTER-SYNONYM.md | 0 .../sql-syntax/ALTER-SYSTEM-KILL-SESSION.md | 0 .../sql-syntax/ALTER-SYSTEM-SET.md | 0 .../sql-syntax/ALTER-TABLE-PARTITION.md | 0 .../sql-syntax/ALTER-TABLE-SUBPARTITION.md | 0 .../reference-guide/sql-syntax/ALTER-TABLE.md | 0 .../sql-syntax/ALTER-TABLESPACE.md | 0 .../ALTER-TEXT-SEARCH-CONFIGURATION.md | 0 .../ALTER-TEXT-SEARCH-DICTIONARY.md | 0 .../sql-syntax/ALTER-TRIGGER.md | 0 .../reference-guide/sql-syntax/ALTER-TYPE.md | 0 .../sql-syntax/ALTER-USER-MAPPING.md | 0 .../reference-guide/sql-syntax/ALTER-USER.md | 0 .../reference-guide/sql-syntax/ALTER-VIEW.md | 0 .../sql-syntax/ANALYZE-ANALYSE.md | 0 .../reference-guide/sql-syntax/BEGIN.md | 0 .../reference-guide/sql-syntax/CALL.md | 0 .../reference-guide/sql-syntax/CHECKPOINT.md | 0 .../sql-syntax/CLEAN-CONNECTION.md | 0 .../reference-guide/sql-syntax/CLOSE.md | 0 .../reference-guide/sql-syntax/CLUSTER.md | 0 .../reference-guide/sql-syntax/COMMENT.md | 0 .../reference-guide/sql-syntax/COMMIT-END.md | 0 .../sql-syntax/COMMIT-PREPARED.md | 0 .../reference-guide/sql-syntax/CONNECT-BY.md | 0 .../reference-guide/sql-syntax/COPY.md | 0 .../sql-syntax/CREATE-AGGREGATE.md | 0 .../sql-syntax/CREATE-AUDIT-POLICY.md | 0 .../reference-guide/sql-syntax/CREATE-CAST.md | 0 .../sql-syntax/CREATE-CLIENT-MASTER-KEY.md | 0 .../CREATE-COLUMN-ENCRYPTION-KEY.md | 0 .../sql-syntax/CREATE-DATA-SOURCE.md | 0 .../sql-syntax/CREATE-DATABASE.md | 0 .../sql-syntax/CREATE-DIRECTORY.md | 0 .../sql-syntax/CREATE-EVENT-TRIGGER.md | 0 .../sql-syntax/CREATE-EVENT.md | 0 .../sql-syntax/CREATE-EXTENSION.md | 0 .../sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md | 0 .../sql-syntax/CREATE-FOREIGN-TABLE.md | 0 .../sql-syntax/CREATE-FUNCTION.md | 0 .../sql-syntax/CREATE-GROUP.md | 0 .../CREATE-INCREMENTAL-MATERIALIZED-VIEW.md | 0 .../sql-syntax/CREATE-INDEX.md | 0 .../sql-syntax/CREATE-LANGUAGE.md | 0 .../sql-syntax/CREATE-MASKING-POLICY.md | 0 .../sql-syntax/CREATE-MATERIALIZED-VIEW.md | 0 .../sql-syntax/CREATE-MODEL.md | 0 .../sql-syntax/CREATE-OPERATOR.md | 0 .../sql-syntax/CREATE-PACKAGE.md | 0 .../sql-syntax/CREATE-PROCEDURE.md | 0 .../sql-syntax/CREATE-PUBLICATION.md | 0 .../sql-syntax/CREATE-RESOURCE-LABEL.md | 0 .../sql-syntax/CREATE-RESOURCE-POOL.md | 0 .../reference-guide/sql-syntax/CREATE-ROLE.md | 0 .../CREATE-ROW-LEVEL-SECURITY-POLICY.md | 0 .../reference-guide/sql-syntax/CREATE-RULE.md | 0 .../sql-syntax/CREATE-SCHEMA.md | 0 .../sql-syntax/CREATE-SEQUENCE.md | 0 .../sql-syntax/CREATE-SERVER.md | 0 .../sql-syntax/CREATE-SUBSCRIPTION.md | 0 .../sql-syntax/CREATE-SYNONYM.md | 0 .../sql-syntax/CREATE-TABLE-AS.md | 0 .../sql-syntax/CREATE-TABLE-PARTITION.md | 0 .../sql-syntax/CREATE-TABLE-SUBPARTITION.md | 0 .../sql-syntax/CREATE-TABLE.md | 0 .../sql-syntax/CREATE-TABLESPACE.md | 0 .../CREATE-TEXT-SEARCH-CONFIGURATION.md | 0 .../CREATE-TEXT-SEARCH-DICTIONARY.md | 0 .../sql-syntax/CREATE-TRIGGER.md | 0 .../reference-guide/sql-syntax/CREATE-TYPE.md | 0 .../sql-syntax/CREATE-USER-MAPPING.md | 0 .../reference-guide/sql-syntax/CREATE-USER.md | 0 .../reference-guide/sql-syntax/CREATE-VIEW.md | 0 .../CREATE-WEAK-PASSWORD-DICTIONARY.md | 0 .../reference-guide/sql-syntax/CURSOR.md | 0 .../reference-guide/sql-syntax/DEALLOCATE.md | 0 .../reference-guide/sql-syntax/DECLARE.md | 0 .../reference-guide/sql-syntax/DELETE.md | 0 .../reference-guide/sql-syntax/DELIMITER.md | 0 .../reference-guide/sql-syntax/DO.md | 0 .../sql-syntax/DROP-AGGREGATE.md | 0 .../sql-syntax/DROP-AUDIT-POLICY.md | 0 .../reference-guide/sql-syntax/DROP-CAST.md | 0 .../sql-syntax/DROP-CLIENT-MASTER-KEY.md | 0 .../sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md | 0 .../sql-syntax/DROP-DATA-SOURCE.md | 0 .../sql-syntax/DROP-DATABASE.md | 0 .../sql-syntax/DROP-DIRECTORY.md | 0 .../sql-syntax/DROP-EVENT-TRIGGER.md | 0 .../reference-guide/sql-syntax/DROP-EVENT.md | 0 .../sql-syntax/DROP-EXTENSION.md | 0 .../sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md | 0 .../sql-syntax/DROP-FOREIGN-TABLE.md | 0 .../sql-syntax/DROP-FUNCTION.md | 0 .../sql-syntax/DROP-GLOBAL-CONFIGURATION.md | 0 .../reference-guide/sql-syntax/DROP-GROUP.md | 0 .../reference-guide/sql-syntax/DROP-INDEX.md | 0 .../sql-syntax/DROP-LANGUAGE.md | 0 .../sql-syntax/DROP-MASKING-POLICY.md | 0 .../sql-syntax/DROP-MATERIALIZED-VIEW.md | 0 .../reference-guide/sql-syntax/DROP-MODEL.md | 0 .../sql-syntax/DROP-OPERATOR.md | 0 .../reference-guide/sql-syntax/DROP-OWNED.md | 0 .../sql-syntax/DROP-PACKAGE.md | 0 .../sql-syntax/DROP-PROCEDURE.md | 0 .../sql-syntax/DROP-PUBLICATION.md | 0 .../sql-syntax/DROP-RESOURCE-LABEL.md | 0 .../sql-syntax/DROP-RESOURCE-POOL.md | 0 .../reference-guide/sql-syntax/DROP-ROLE.md | 0 .../DROP-ROW-LEVEL-SECURITY-POLICY.md | 0 .../reference-guide/sql-syntax/DROP-RULE.md | 0 .../reference-guide/sql-syntax/DROP-SCHEMA.md | 0 .../sql-syntax/DROP-SEQUENCE.md | 0 .../reference-guide/sql-syntax/DROP-SERVER.md | 0 .../sql-syntax/DROP-SUBSCRIPTION.md | 0 .../sql-syntax/DROP-SYNONYM.md | 0 .../reference-guide/sql-syntax/DROP-TABLE.md | 0 .../sql-syntax/DROP-TABLESPACE.md | 0 .../DROP-TEXT-SEARCH-CONFIGURATION.md | 0 .../sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md | 0 .../sql-syntax/DROP-TRIGGER.md | 0 .../reference-guide/sql-syntax/DROP-TYPE.md | 0 .../sql-syntax/DROP-USER-MAPPING.md | 0 .../reference-guide/sql-syntax/DROP-USER.md | 0 .../reference-guide/sql-syntax/DROP-VIEW.md | 0 .../DROP-WEAK-PASSWORD-DICTIONARY.md | 0 .../sql-syntax/EXECUTE-DIRECT.md | 0 .../reference-guide/sql-syntax/EXECUTE.md | 0 .../sql-syntax/EXPLAIN-PLAN.md | 0 .../reference-guide/sql-syntax/EXPLAIN.md | 0 .../reference-guide/sql-syntax/FETCH.md | 0 .../reference-guide/sql-syntax/GRANT.md | 0 .../reference-guide/sql-syntax/INSERT.md | 0 .../reference-guide/sql-syntax/LOCK.md | 0 .../reference-guide/sql-syntax/MERGE-INTO.md | 0 .../reference-guide/sql-syntax/MOVE.md | 0 .../reference-guide/sql-syntax/PREDICT-BY.md | 0 .../sql-syntax/PREPARE-TRANSACTION.md | 0 .../reference-guide/sql-syntax/PREPARE.md | 0 .../reference-guide/sql-syntax/PURGE.md | 0 .../sql-syntax/REASSIGN-OWNED.md | 0 .../REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md | 0 .../sql-syntax/REFRESH-MATERIALIZED-VIEW.md | 0 .../reference-guide/sql-syntax/REINDEX.md | 0 .../sql-syntax/RELEASE-SAVEPOINT.md | 0 .../reference-guide/sql-syntax/RESET.md | 0 .../reference-guide/sql-syntax/REVOKE.md | 0 .../sql-syntax/ROLLBACK-PREPARED.md | 0 .../sql-syntax/ROLLBACK-TO-SAVEPOINT.md | 0 .../reference-guide/sql-syntax/ROLLBACK.md | 0 .../reference-guide/sql-syntax/SAVEPOINT.md | 0 .../reference-guide/sql-syntax/SELECT-INTO.md | 0 .../reference-guide/sql-syntax/SELECT.md | 0 .../sql-syntax/SET-CONSTRAINTS.md | 0 .../reference-guide/sql-syntax/SET-ROLE.md | 0 .../sql-syntax/SET-SESSION-AUTHORIZATION.md | 0 .../sql-syntax/SET-TRANSACTION.md | 0 .../reference-guide/sql-syntax/SET.md | 0 .../reference-guide/sql-syntax/SHOW-EVENTS.md | 0 .../reference-guide/sql-syntax/SHOW.md | 0 .../reference-guide/sql-syntax/SHRINK.md | 0 .../reference-guide/sql-syntax/SHUTDOWN.md | 0 .../reference-guide/sql-syntax/SNAPSHOT.md | 0 .../sql-syntax/START-TRANSACTION.md | 0 .../sql-syntax/TIMECAPSULE-TABLE.md | 0 .../reference-guide/sql-syntax/TRUNCATE.md | 0 .../reference-guide/sql-syntax/UPDATE.md | 0 .../reference-guide/sql-syntax/VACUUM.md | 0 .../reference-guide/sql-syntax/VALUES.md | 0 .../reference-guide/sql-syntax/sql-syntax.md | 0 .../supported-data-types/HLL.md | 0 .../supported-data-types/binary-data-types.md | 0 .../supported-data-types/bit-string-types.md | 0 .../boolean-data-types.md | 0 .../character-data-types.md | 0 .../data-type-used-by-the-ledger-database.md | 0 ...-types-supported-by-column-store-tables.md | 0 .../supported-data-types/date-time-types.md | 0 .../supported-data-types/geometric.md | 0 .../supported-data-types/json-types.md | 0 .../supported-data-types/monetary.md | 0 .../supported-data-types/network-address.md | 0 .../numeric-data-types.md | 0 .../object-identifier-types.md | 0 .../supported-data-types/pseudo-types.md | 0 .../supported-data-types/range.md | 0 .../supported-data-types/set-type.md | 0 .../supported-data-types.md | 0 .../supported-data-types/text-search-types.md | 0 .../supported-data-types/uuid-type.md | 0 .../supported-data-types/xml-type.md | 0 ...iew-of-system-catalogs-and-system-views.md | 0 .../system-catalogs-and-system-views.md | 0 .../system-catalogs/GS_ASP.md | 0 .../system-catalogs/GS_AUDITING_POLICY.md | 0 .../GS_AUDITING_POLICY_ACCESS.md | 0 .../GS_AUDITING_POLICY_FILTERS.md | 0 .../GS_AUDITING_POLICY_PRIVILEGES.md | 0 .../system-catalogs/GS_CLIENT_GLOBAL_KEYS.md | 0 .../GS_CLIENT_GLOBAL_KEYS_ARGS.md | 0 .../system-catalogs/GS_COLUMN_KEYS.md | 0 .../system-catalogs/GS_COLUMN_KEYS_ARGS.md | 0 .../system-catalogs/GS_DB_PRIVILEGE.md | 0 .../system-catalogs/GS_ENCRYPTED_COLUMNS.md | 0 .../system-catalogs/GS_ENCRYPTED_PROC.md | 0 .../system-catalogs/GS_GLOBAL_CHAIN.md | 0 .../system-catalogs/GS_GLOBAL_CONFIG.md | 0 .../system-catalogs/GS_MASKING_POLICY.md | 0 .../GS_MASKING_POLICY_ACTIONS.md | 0 .../GS_MASKING_POLICY_FILTERS.md | 0 .../system-catalogs/GS_MATVIEW.md | 0 .../system-catalogs/GS_MATVIEW_DEPENDENCY.md | 0 .../system-catalogs/GS_MODEL_WAREHOUSE.md | 0 .../system-catalogs/GS_OPT_MODEL.md | 0 .../system-catalogs/GS_PACKAGE.md | 0 .../system-catalogs/GS_POLICY_LABEL.md | 0 .../system-catalogs/GS_RECYCLEBIN.md | 0 .../system-catalogs/GS_TXN_SNAPSHOT.md | 0 .../system-catalogs/GS_UID.md | 0 .../GS_WLM_EC_OPERATOR_INFO.md | 0 .../GS_WLM_INSTANCE_HISTORY.md | 0 .../system-catalogs/GS_WLM_OPERATOR_INFO.md | 0 .../GS_WLM_PLAN_ENCODING_TABLE.md | 0 .../GS_WLM_PLAN_OPERATOR_INFO.md | 0 .../GS_WLM_SESSION_QUERY_INFO_ALL.md | 0 .../GS_WLM_USER_RESOURCE_HISTORY.md | 0 .../system-catalogs/PGXC_CLASS.md | 0 .../system-catalogs/PGXC_GROUP.md | 0 .../system-catalogs/PGXC_NODE.md | 0 .../system-catalogs/PGXC_SLICE.md | 0 .../system-catalogs/PG_AGGREGATE.md | 0 .../system-catalogs/PG_AM.md | 0 .../system-catalogs/PG_AMOP.md | 0 .../system-catalogs/PG_AMPROC.md | 0 .../PG_APP_WORKLOADGROUP_MAPPING.md | 0 .../system-catalogs/PG_ATTRDEF.md | 0 .../system-catalogs/PG_ATTRIBUTE.md | 0 .../system-catalogs/PG_AUTHID.md | 0 .../system-catalogs/PG_AUTH_HISTORY.md | 0 .../system-catalogs/PG_AUTH_MEMBERS.md | 0 .../system-catalogs/PG_CAST.md | 0 .../system-catalogs/PG_CLASS.md | 0 .../system-catalogs/PG_COLLATION.md | 0 .../system-catalogs/PG_CONSTRAINT.md | 0 .../system-catalogs/PG_CONVERSION.md | 0 .../system-catalogs/PG_DATABASE.md | 0 .../system-catalogs/PG_DB_ROLE_SETTING.md | 0 .../system-catalogs/PG_DEFAULT_ACL.md | 0 .../system-catalogs/PG_DEPEND.md | 0 .../system-catalogs/PG_DESCRIPTION.md | 0 .../system-catalogs/PG_DIRECTORY.md | 0 .../system-catalogs/PG_ENUM.md | 0 .../system-catalogs/PG_EVENT_TRIGGER.md | 0 .../system-catalogs/PG_EXTENSION.md | 0 .../PG_EXTENSION_DATA_SOURCE.md | 0 .../PG_FOREIGN_DATA_WRAPPER.md | 0 .../system-catalogs/PG_FOREIGN_SERVER.md | 0 .../system-catalogs/PG_FOREIGN_TABLE.md | 0 .../system-catalogs/PG_HASHBUCKET.md | 0 .../system-catalogs/PG_INDEX.md | 0 .../system-catalogs/PG_INHERITS.md | 0 .../system-catalogs/PG_JOB.md | 0 .../system-catalogs/PG_JOB_PROC.md | 0 .../system-catalogs/PG_LANGUAGE.md | 0 .../system-catalogs/PG_LARGEOBJECT.md | 0 .../PG_LARGEOBJECT_METADATA.md | 0 .../system-catalogs/PG_NAMESPACE.md | 0 .../system-catalogs/PG_OBJECT.md | 0 .../system-catalogs/PG_OPCLASS.md | 0 .../system-catalogs/PG_OPERATOR.md | 0 .../system-catalogs/PG_OPFAMILY.md | 0 .../system-catalogs/PG_PARTITION.md | 0 .../system-catalogs/PG_PLTEMPLATE.md | 0 .../system-catalogs/PG_PROC.md | 0 .../system-catalogs/PG_PUBLICATION.md | 0 .../system-catalogs/PG_PUBLICATION_REL.md | 0 .../system-catalogs/PG_RANGE.md | 0 .../system-catalogs/PG_REPLICATION_ORIGIN.md | 0 .../system-catalogs/PG_RESOURCE_POOL.md | 0 .../system-catalogs/PG_REWRITE.md | 0 .../system-catalogs/PG_RLSPOLICY.md | 0 .../system-catalogs/PG_SECLABEL.md | 0 .../system-catalogs/PG_SET.md | 0 .../system-catalogs/PG_SHDEPEND.md | 0 .../system-catalogs/PG_SHDESCRIPTION.md | 0 .../system-catalogs/PG_SHSECLABEL.md | 0 .../system-catalogs/PG_STATISTIC.md | 0 .../system-catalogs/PG_STATISTIC_EXT.md | 0 .../system-catalogs/PG_SUBSCRIPTION.md | 0 .../system-catalogs/PG_SUBSCRIPTION_REL.md | 0 .../system-catalogs/PG_SYNONYM.md | 0 .../system-catalogs/PG_TABLESPACE.md | 0 .../system-catalogs/PG_TRIGGER.md | 0 .../system-catalogs/PG_TS_CONFIG.md | 0 .../system-catalogs/PG_TS_CONFIG_MAP.md | 0 .../system-catalogs/PG_TS_DICT.md | 0 .../system-catalogs/PG_TS_PARSER.md | 0 .../system-catalogs/PG_TS_TEMPLATE.md | 0 .../system-catalogs/PG_TYPE.md | 0 .../system-catalogs/PG_USER_MAPPING.md | 0 .../system-catalogs/PG_USER_STATUS.md | 0 .../system-catalogs/PG_WORKLOAD_GROUP.md | 0 .../system-catalogs/PLAN_TABLE_DATA.md | 0 .../system-catalogs/STATEMENT_HISTORY.md | 0 .../system-catalogs/system-catalogs.md | 0 .../system-views/GET_GLOBAL_PREPARED_XACTS.md | 0 .../GS_ASYNC_SUBMIT_SESSIONS_STATUS.md | 0 .../system-views/GS_AUDITING.md | 0 .../system-views/GS_AUDITING_ACCESS.md | 0 .../system-views/GS_AUDITING_PRIVILEGE.md | 0 .../system-views/GS_CLUSTER_RESOURCE_INFO.md | 0 .../system-views/GS_COMPRESSION.md | 0 .../system-views/GS_DB_PRIVILEGES.md | 0 .../system-views/GS_FILE_STAT.md | 0 .../system-views/GS_GSC_MEMORY_DETAIL.md | 0 .../system-views/GS_INSTANCE_TIME.md | 0 .../system-views/GS_LABELS.md | 0 .../system-views/GS_LSC_MEMORY_DETAIL.md | 0 .../system-views/GS_MASKING.md | 0 .../system-views/GS_MATVIEWS.md | 0 .../system-views/GS_OS_RUN_INFO.md | 0 .../system-views/GS_REDO_STAT.md | 0 .../system-views/GS_SESSION_CPU_STATISTICS.md | 0 .../system-views/GS_SESSION_MEMORY.md | 0 .../system-views/GS_SESSION_MEMORY_CONTEXT.md | 0 .../system-views/GS_SESSION_MEMORY_DETAIL.md | 0 .../GS_SESSION_MEMORY_STATISTICS.md | 0 .../system-views/GS_SESSION_STAT.md | 0 .../system-views/GS_SESSION_TIME.md | 0 .../system-views/GS_SHARED_MEMORY_DETAIL.md | 0 .../system-views/GS_SQL_COUNT.md | 0 .../system-views/GS_STAT_SESSION_CU.md | 0 .../system-views/GS_THREAD_MEMORY_CONTEXT.md | 0 .../system-views/GS_TOTAL_MEMORY_DETAIL.md | 0 .../system-views/GS_WLM_CGROUP_INFO.md | 0 .../GS_WLM_EC_OPERATOR_STATISTICS.md | 0 .../system-views/GS_WLM_OPERATOR_HISTORY.md | 0 .../GS_WLM_OPERATOR_STATISTICS.md | 0 .../GS_WLM_PLAN_OPERATOR_HISTORY.md | 0 .../GS_WLM_REBUILD_USER_RESOURCE_POOL.md | 0 .../system-views/GS_WLM_RESOURCE_POOL.md | 0 .../system-views/GS_WLM_SESSION_HISTORY.md | 0 .../system-views/GS_WLM_SESSION_INFO.md | 0 .../system-views/GS_WLM_SESSION_INFO_ALL.md | 0 .../system-views/GS_WLM_SESSION_STATISTICS.md | 0 .../system-views/GS_WLM_USER_INFO.md | 0 .../system-views/IOS_STATUS.md | 0 .../system-views/MPP_TABLES.md | 0 .../system-views/PGXC_PREPARED_XACTS.md | 0 .../system-views/PG_AVAILABLE_EXTENSIONS.md | 0 .../PG_AVAILABLE_EXTENSION_VERSIONS.md | 0 .../system-views/PG_COMM_DELAY.md | 0 .../system-views/PG_COMM_RECV_STREAM.md | 0 .../system-views/PG_COMM_SEND_STREAM.md | 0 .../system-views/PG_COMM_STATUS.md | 0 .../system-views/PG_CONTROL_GROUP_CONFIG.md | 0 .../system-views/PG_CURSORS.md | 0 .../system-views/PG_EXT_STATS.md | 0 .../system-views/PG_GET_INVALID_BACKENDS.md | 0 .../PG_GET_SENDERS_CATCHUP_TIME.md | 0 .../system-views/PG_GROUP.md | 0 .../system-views/PG_GTT_ATTACHED_PIDS.md | 0 .../system-views/PG_GTT_RELSTATS.md | 0 .../system-views/PG_GTT_STATS.md | 0 .../system-views/PG_INDEXES.md | 0 .../system-views/PG_LOCKS.md | 0 .../system-views/PG_NODE_ENV.md | 0 .../system-views/PG_OS_THREADS.md | 0 .../system-views/PG_PREPARED_STATEMENTS.md | 0 .../system-views/PG_PREPARED_XACTS.md | 0 .../system-views/PG_PUBLICATION_TABLES.md | 0 .../PG_REPLICATION_ORIGIN_STATUS.md | 0 .../system-views/PG_REPLICATION_SLOTS.md | 0 .../system-views/PG_RLSPOLICIES.md | 0 .../system-views/PG_ROLES.md | 0 .../system-views/PG_RULES.md | 0 .../system-views/PG_RUNNING_XACTS.md | 0 .../system-views/PG_SECLABELS.md | 0 .../system-views/PG_SESSION_IOSTAT.md | 0 .../system-views/PG_SESSION_WLMSTAT.md | 0 .../system-views/PG_SETTINGS.md | 0 .../system-views/PG_SHADOW.md | 0 .../system-views/PG_STATIO_ALL_INDEXES.md | 0 .../system-views/PG_STATIO_ALL_SEQUENCES.md | 0 .../system-views/PG_STATIO_ALL_TABLES.md | 0 .../system-views/PG_STATIO_SYS_INDEXES.md | 0 .../system-views/PG_STATIO_SYS_SEQUENCES.md | 0 .../system-views/PG_STATIO_SYS_TABLES.md | 0 .../system-views/PG_STATIO_USER_INDEXES.md | 0 .../system-views/PG_STATIO_USER_SEQUENCES.md | 0 .../system-views/PG_STATIO_USER_TABLES.md | 0 .../system-views/PG_STATS.md | 0 .../system-views/PG_STAT_ACTIVITY.md | 0 .../system-views/PG_STAT_ACTIVITY_NG.md | 0 .../system-views/PG_STAT_ALL_INDEXES.md | 0 .../system-views/PG_STAT_ALL_TABLES.md | 0 .../system-views/PG_STAT_BAD_BLOCK.md | 0 .../system-views/PG_STAT_BGWRITER.md | 0 .../system-views/PG_STAT_DATABASE.md | 0 .../PG_STAT_DATABASE_CONFLICTS.md | 0 .../system-views/PG_STAT_REPLICATION.md | 0 .../system-views/PG_STAT_SUBSCRIPTION.md | 0 .../system-views/PG_STAT_SYS_INDEXES.md | 0 .../system-views/PG_STAT_SYS_TABLES.md | 0 .../system-views/PG_STAT_USER_FUNCTIONS.md | 0 .../system-views/PG_STAT_USER_INDEXES.md | 0 .../system-views/PG_STAT_USER_TABLES.md | 0 .../system-views/PG_STAT_XACT_ALL_TABLES.md | 0 .../system-views/PG_STAT_XACT_SYS_TABLES.md | 0 .../PG_STAT_XACT_USER_FUNCTIONS.md | 0 .../system-views/PG_STAT_XACT_USER_TABLES.md | 0 .../system-views/PG_TABLES.md | 0 .../system-views/PG_TDE_INFO.md | 0 .../system-views/PG_THREAD_WAIT_STATUS.md | 0 .../system-views/PG_TIMEZONE_ABBREVS.md | 0 .../system-views/PG_TIMEZONE_NAMES.md | 0 .../system-views/PG_TOTAL_MEMORY_DETAIL.md | 0 .../PG_TOTAL_USER_RESOURCE_INFO.md | 0 .../PG_TOTAL_USER_RESOURCE_INFO_OID.md | 0 .../system-views/PG_USER.md | 0 .../system-views/PG_USER_MAPPINGS.md | 0 .../system-views/PG_VARIABLE_INFO.md | 0 .../system-views/PG_VIEWS.md | 0 .../system-views/PG_WLM_STATISTICS.md | 0 .../system-views/PLAN_TABLE.md | 0 .../system-views/system-views.md | 0 .../viewing-system-catalogs.md | 0 .../reference-guide/tool-reference/FAQ.md | 0 .../tool-reference/client-tool/client-tool.md | 0 .../client-tool/gsql/client-tool-gsql.md | 0 .../client-tool/gsql/command-reference.md | 0 .../client-tool/gsql/gsql-faq.md | 0 .../client-tool/gsql/gsql-introduction.md | 0 .../gsql/meta-command-reference.md | 0 .../gsql/obtaining-help-information.md | 0 .../client-tool/gsql/usage-guidelines.md | 0 .../functions-of-mogdb-executable-scripts.md | 0 .../tool-reference/server-tools/gs_cgroup.md | 0 .../tool-reference/server-tools/gs_check.md | 0 .../tool-reference/server-tools/gs_checkos.md | 0 .../server-tools/gs_checkperf.md | 0 .../server-tools/gs_collector.md | 0 .../tool-reference/server-tools/gs_dump.md | 0 .../tool-reference/server-tools/gs_dumpall.md | 0 .../tool-reference/server-tools/gs_encrypt.md | 0 .../tool-reference/server-tools/gs_guc.md | 0 .../tool-reference/server-tools/gs_om.md | 0 .../server-tools/gs_plan_simulator.md | 0 .../tool-reference/server-tools/gs_restore.md | 0 .../tool-reference/server-tools/gs_sdr.md | 0 .../tool-reference/server-tools/gs_ssh.md | 0 .../tool-reference/server-tools/gs_watch.md | 0 .../server-tools/server-tools.md | 0 ...ogs-and-views-supported-by-gs_collector.md | 0 .../tool-reference/tool-overview.md | 0 .../tool-reference/tool-reference.md | 0 .../dsscmd.md | 0 .../dssserver.md | 0 .../gs_backup.md | 0 .../gs_basebackup.md | 0 .../gs_ctl.md | 0 .../gs_dropnode.md | 0 .../gs_expansion.md | 0 .../gs_initdb.md | 0 .../gs_install.md | 0 .../gs_postuninstall.md | 0 .../gs_preinstall.md | 0 .../gs_probackup.md | 0 .../gs_sshexkey.md | 0 .../gs_tar.md | 0 .../gs_uninstall.md | 0 .../gs_upgradechk.md | 0 .../gs_upgradectl.md | 0 .../gstrace.md | 0 .../kadmin-local.md | 0 .../kdb5_util.md | 0 .../kdestroy.md | 0 .../kinit.md | 0 .../klist.md | 0 .../krb5kdc.md | 0 .../mogdb.md | 0 .../pg_archivecleanup.md | 0 .../pg_config.md | 0 .../pg_controldata.md | 0 .../pg_recvlogical.md | 0 .../pg_resetxlog.md | 0 .../tools-used-in-the-internal-system/pscp.md | 0 .../tools-used-in-the-internal-system/pssh.md | 0 .../tools-used-in-the-internal-system.md | 0 .../transfer.py.md | 0 .../security-guide/security-guide.md | 0 .../1-client-access-authentication.md | 0 .../2-managing-users-and-their-permissions.md | 0 .../security/3-configuring-database-audit.md | 0 .../4-setting-encrypted-equality-query.md | 0 .../security/5-setting-a-ledger-database.md | 0 .../security/6-transparent-data-encryption.md | 0 .../security/database-security-management.md | 0 .../{v5.1 => v6.0}/source-code-parsing.md | 0 product/zh/docs-mogdb/{v5.1 => v6.0}/toc.md | 2 +- .../zh/docs-mogdb/{v5.1 => v6.0}/toc_about.md | 2 +- .../{v5.1 => v6.0}/toc_ai-features.md | 2 +- .../toc_characteristic_description.md | 2 +- .../toc_common-faults-and-identification.md | 2 +- .../toc_communication-matrix.md | 2 +- .../{v5.1 => v6.0}/toc_datatypes-and-sql.md | 2 +- .../zh/docs-mogdb/{v5.1 => v6.0}/toc_dev.md | 2 +- .../zh/docs-mogdb/{v5.1 => v6.0}/toc_error.md | 2 +- .../{v5.1 => v6.0}/toc_extension-referecne.md | 2 +- .../zh/docs-mogdb/{v5.1 => v6.0}/toc_faqs.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_glossary.md | 2 +- .../{v5.1 => v6.0}/toc_high_available.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_install.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_manage.md | 2 +- .../toc_parameters-and-tools.md | 2 +- .../{v5.1 => v6.0}/toc_performance.md | 2 +- .../{v5.1 => v6.0}/toc_quickstart.md | 2 +- .../docs-mogdb/{v5.1 => v6.0}/toc_secure.md | 2 +- .../toc_system-catalogs-and-functions.md | 2 +- 3966 files changed, 74 insertions(+), 728 deletions(-) delete mode 100644 product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md delete mode 100644 product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md delete mode 100644 product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md delete mode 100644 product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai-feature.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/abo-optimizer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-1-x-tuner-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-2-preparations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-3-examples.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-4-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-5-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-6-Troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-1-single-query-index-recommendation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-2-virtual-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-3-workload-level-index-recommendation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-1-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-2-environment-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-3-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-4-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-5-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-6-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-1-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-2-environment-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-3-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-4-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-5-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-6-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-1-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-2-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-3-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-4-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-5-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-1-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-2-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-3-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-4-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-5-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-1-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-2-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-3-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-4-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-5-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai4db-autonomous-database-o&m.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/1-service.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/2-component.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/3-set.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/component.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/dbmind-mode.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/service.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/set.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/db4ai.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/full-process-ai.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/native-db4ai-engine.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/_index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/MogDB-compared-to-openGauss.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/about-mogdb.md (100%) create mode 100644 product/en/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/2-docker-based-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/DBMS-RANDOM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/compat-tools.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/mog_filedump.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/mog_xlogdump.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/mogdb-monitor.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/open-source-components.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/terms-of-use.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/about-mogdb/usage-limitations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/administrator-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/backup-and-restoration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/flashback-restoration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/column-store-tables-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/database-deployment-scenario.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/character-set-support.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/collation-support.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/locale-support.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/localization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/using-mot.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/4-appendix/1-references.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/4-appendix/2-glossary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/4-appendix/mot-appendix.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/mot-engine.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/primary-and-standby-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/11-log-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/2-checking-os-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/4-checking-database-performance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/6-checking-time-consistency.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/routine-maintenance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/slow-sql-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/administrator-guide/upgrade-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai-capabilities.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/1-standard-sql.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/ECPG.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/application-development-interfaces.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/characteristic-description-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/characteristic-description.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/custom-type-array.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/for-update-supports-outer-join.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/format-error-backtrace.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/mogdb-supports-insert-all.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-passing-the-count-attribute.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-plpgsql-subtype.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-q-quote-escape-character.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-table-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-where-current-of.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/1-access-control-model.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/10-row-level-access-control.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/11-password-strength-verification.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/13-ledger-database-mechanism.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/14-transparent-data-encryption.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/3-database-encryption-authentication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/4-data-encryption-and-storage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/5-database-audit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/6-network-communication-security.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/7-resource-label.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/8-unified-audit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/9-dynamic-data-anonymization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/database-security.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/10-autonomous-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/11-global-temporary-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/16-publication-subscription.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/19-transaction-async-submit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/2-sql-hints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/20-copy-import-optimization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/24-brin-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/25-bloom-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/3-full-text-indexing.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/5-partitioning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/7-materialized-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/8-hyperloglog.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/9-creating-an-index-online.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/enterprise-level-features.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/event-trigger.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/1-primary-standby.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/12-parallel-logical-decoding.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/13-dcf.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/14-cm.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/15-global-syscache.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/17-two-city-three-dc-dr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/2-logical-replication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/4-logical-backup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/5-physical-backup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/7-ultimate-rto.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/8-cascaded-standby-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/9-delayed-replay.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/ddl-query-of-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/high-availability.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/1-cbo-optimizer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/10-xlog-no-lock-flush.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/2-llvm.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/3-vectorized-engine.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/4-hybrid-row-column-store.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/5-adaptive-compression.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/9-smp-for-parallel-execution.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/adaptive-two-phase-aggregation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/astore-row-level-compression.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/btree-index-compression.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/high-performance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/ock-accelerated-data-transmission.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/ordering-operator-optimization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/parallel-index-scan.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/parallel-query-optimization.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/sql-bypass.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/tracing-SQL-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/1-gray-upgrade.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/2-workload-diagnosis-report.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/3-slow-sql-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/4-session-performance-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/built-in-stack-tool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/dcf-module-tracing.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/error-when-writing-illegal-characters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/extension-splitting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/fault-diagnosis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/light-lock-export-and-analysis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/maintainability.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/pageinspect-pagehack.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/sql-patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/distributed-analysis-capabilities.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/distributed-database-capability.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/middleware.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/characteristic-description/workload-management/workload-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-methods.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-faults-and-identification.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/communication-matrix.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/1-1-stored-procedure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/4-restrictions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/4-development-process.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/development-process.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/libpq-example.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/link-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/5-commissioning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/application-development-tutorial.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/design-specification.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/introduction-to-development-specifications.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/naming-specification.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/overview-of-development-specifications.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/postgresql-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/query-operations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/syntax-specification.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/developer-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/extension.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/dblink.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/file_fdw.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_bulkload-user-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_prewarm-user-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_repack-user-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_trgm-user-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/postgis-extension.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/postgis-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/using-postgis.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/wal2json-user-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/whale.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-decoding/logical-decoding.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-replication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/architecture.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/configuration-settings.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/conflicts.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/monitoring.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/publication-subscription.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/publications.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/quick-setup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/restrictions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/security.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/subscriptions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/1-materialized-view-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/assessment-tool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db_name.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/mysql-compatible-description.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/partition-pruning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/static-partition-pruning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-1-plpgsql-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-10-other-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-11-cursors.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-12-retry-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-13-debugging.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-14-package.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-2-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-3-data-type-conversion.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-4-arrays-and-records.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-5-declare-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-6-basic-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-7-dynamic-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-8-control-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-9-transaction-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/advanced-packages/advanced-packages.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/scheduled-jobs/pkg-service.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/scheduled-jobs/scheduled-jobs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/developer-guide/user-defined-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/application-development-faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/deployment-and-maintenance-faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/high-availability-faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/migration-faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/product-faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/faqs/upgrade-faqs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/glossary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cluster-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/feature-introduction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/introduction-to-cm_persist.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/manual-configuration-of-vip.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/safety-design.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/high-available-dcf.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/high-available-guide/high-available-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/docker-installation/docker-installation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-preparation/environment-requirement.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-preparation/installation-preparation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-preparation/os-configuration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/manual-installation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/ptk-based-installation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/installation-guide/recommended-parameter-settings.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/mogeaver/mogeaver-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/mogeaver/mogeaver-release-notes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/mogeaver/mogeaver.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/TPCC-performance-tuning-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/performance-tuning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/hint-based-tuning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/query-execution-process.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/sql-tuning-optimizer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/sql-tuning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/tuning-process.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/typical-sql-optimization-methods.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/updating-statistics.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-llvm.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-smp.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-ustore.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-vector-engine.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/optimizing-os-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-load-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/system-tuning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/wdr/wdr-report.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/wdr/wdr-snapshot-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/performance-tuning/wdr/wdr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/container-based-installation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/installation-on-a-single-node.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/mogdb-access.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-playground.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/mogila.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/quick-start/quick-start.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/error-code-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/third-party-library-error-codes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-log-reference/error-log-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-log-reference/kernel-error-message.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/aggregate-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/ai-feature-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/array-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/binary-string-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/bit-string-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/character-processing-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/comparison-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/conditional-expressions-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/dynamic-data-masking-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/encrypted-equality-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/event-trigger-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/fault-injection-system-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/geometric-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/global-syscache-feature-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/global-temporary-table-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/hash-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/hll-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/internal-functions/internal-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/json-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/ledger-database-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/logical-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/mathematical-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/mode-matching-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/network-address-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/obsolete-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/prompt-message-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/range-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/security-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/sequence-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/set-returning-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/guc-value-inquiry-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/other-function.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/other-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/text-search-functions-and-operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/trigger-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/window-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/xml-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/AI-features.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/DCF-parameters-settings.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/HyperLogLog.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/MogDB-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/alarm-detection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/appendix.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/audit-switch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/auditing.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/operation-audit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/user-and-permission-audit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/automatic-vacuuming.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/backend-compression.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/backup-and-restoration-parameter.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/cm-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-pool-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/developer-options.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/fault-tolerance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/file-location.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/flashback.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/global-syscache-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/global-temporary-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/guc-parameter-list.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/guc-parameter-usage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/guc-user-defined-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/ha-replication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/primary-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/sending-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/standby-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/load-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/lock-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/miscellaneous-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/mot.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/other-optimizer-options.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/query-planning.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/reference-guide-guc-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/reserved-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/background-writer.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/disk-space.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/memory.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/resource-consumption.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/rollback-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/scheduled-task.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/security-configuration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/system-performance-snapshot.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/thread-pool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/upgrade-parameters.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/wait-events.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/archiving.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/checkpoints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/log-replay.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/settings.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/reference-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/DBE_PERF.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/configuration/configuration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/file.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/instance/instance.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/lock/LOCKS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/lock/lock.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/GS_SHARED_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/memory-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/object-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/operator-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/OS_THREADS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/os-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/query-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/global_rto_status.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/session-thread.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/utility.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/workload-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/information-schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/schema.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/alias.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/appendix.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/extended-functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/extended-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/implementation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/scalability.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/constant-and-macro.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/controlling-transactions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/dcl-syntax-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/ddl-syntax-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/dml-syntax-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/array-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/condition-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/row-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/simple-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/subquery-expressions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/configuration-examples.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/full-text-search.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/configurations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/limitations.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/parser.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/keywords/keywords-1.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/keywords/keywords-2.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/keywords/keywords.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/mogdb-sql.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/ordinary-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/partition-table.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-anonymous-block.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-contraints.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-cursor.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-index.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-llvm.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-lock.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-trigger.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-syntax-format.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sub-query.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/system-operation.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/transaction/sql-reference-transaction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/transaction/transaction-control.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/transaction/transaction-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-base-value.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/functions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/operators.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/type-conversion-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/type-conversion.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/value-storage.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ABORT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-AGGREGATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DIRECTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-EVENT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-EXTENSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-FUNCTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-GROUP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-INDEX.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-LANGUAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-OPERATOR.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-PACKAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-PROCEDURE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-PUBLICATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-ROLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-RULE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SCHEMA.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SEQUENCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SERVER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SESSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SYNONYM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLESPACE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TYPE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-USER-MAPPING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-USER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ANALYZE-ANALYSE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/BEGIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CALL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CHECKPOINT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CLEAN-CONNECTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CLOSE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CLUSTER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COMMENT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COMMIT-END.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COMMIT-PREPARED.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CONNECT-BY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COPY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-AGGREGATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-CAST.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-DIRECTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-EVENT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-EXTENSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-FUNCTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-GROUP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-INDEX.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-LANGUAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-MODEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-OPERATOR.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-PACKAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-PROCEDURE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-PUBLICATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-ROLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-RULE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SCHEMA.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SEQUENCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SERVER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SYNONYM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE-AS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLESPACE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TYPE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-USER-MAPPING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-USER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CURSOR.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DEALLOCATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DECLARE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DELETE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DELIMITER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-AGGREGATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-CAST.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-DATA-SOURCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-DIRECTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-EVENT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-EXTENSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-FUNCTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-GROUP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-INDEX.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-LANGUAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-MASKING-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-MODEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-OPERATOR.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-OWNED.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-PACKAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-PROCEDURE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-PUBLICATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-ROLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-RULE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SCHEMA.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SEQUENCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SERVER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SYNONYM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TABLESPACE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TYPE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-USER-MAPPING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-USER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXECUTE-DIRECT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXECUTE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXPLAIN-PLAN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXPLAIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/FETCH.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/GRANT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/INSERT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/LOCK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/MERGE-INTO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/MOVE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PREDICT-BY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PREPARE-TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PREPARE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PURGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REASSIGN-OWNED.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REINDEX.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/RESET.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REVOKE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ROLLBACK-PREPARED.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ROLLBACK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SAVEPOINT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SELECT-INTO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SELECT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-CONSTRAINTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-ROLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHOW-EVENTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHOW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHRINK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHUTDOWN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/START-TRANSACTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/TRUNCATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/UPDATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/VACUUM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/VALUES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/sql-syntax.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/HLL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/binary-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/bit-string-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/boolean-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/character-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/date-time-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/geometric.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/json-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/monetary.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/network-address.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/numeric-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/object-identifier-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/pseudo-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/range.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/set-type.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/supported-data-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/text-search-types.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/uuid-type.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/xml-type.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/system-views.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/FAQ.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/client-tool.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_cgroup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_check.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_checkos.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_checkperf.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_collector.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_dump.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_dumpall.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_encrypt.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_guc.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_om.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_plan_simulator.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_restore.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_sdr.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_ssh.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_watch.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/server-tools.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tool-overview.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tool-reference.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security-guide.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/1-client-access-authentication.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/2-managing-users-and-their-permissions.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/3-configuring-database-audit.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/4-setting-encrypted-equality-query.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/5-setting-a-ledger-database.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/6-transparent-data-encryption.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/security-guide/security/database-security-management.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/source-code-parsing.md (100%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_about.md (79%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_ai-features.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_characteristic_description.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_common-faults-and-identification.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_communication-matrix.md (74%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_datatypes-and-sql.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_dev.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_error.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_extension-referecne.md (98%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_faqs.md (94%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_glossary.md (61%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_high_available.md (97%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_install.md (96%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_manage.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_parameters-and-tools.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_performance.md (99%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_quickstart.md (98%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_secure.md (96%) rename product/en/docs-mogdb/{v5.1 => v6.0}/toc_system-catalogs-and-functions.md (99%) delete mode 100644 product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md delete mode 100644 product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md delete mode 100644 product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md delete mode 100644 product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai-feature.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/abo-optimizer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-multi-metric-correlation-analysis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/ai4db-autonomous-database-o&m.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/component.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/dbmind-mode.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/service.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/ai4db/dbmind-mode/set.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/db4ai.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/full-process-ai.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/AI-features/db4ai/native-db4ai-engine.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/_index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/MogDB-compared-to-openGauss.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/about-mogdb.md (100%) create mode 100644 product/zh/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/2-docker-based-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/DBMS-RANDOM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/compat-tools.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/mog_filedump.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/mog_xlogdump.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/mogdb-monitor.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/open-source-components/open-source-components.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/terms-of-use.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/about-mogdb/usage-limitations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/administrator-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/backup-and-restoration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/flashback-restoration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/column-store-tables-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/database-deployment-scenario.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-om-installation-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-one-city-two-center-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/character-set-support.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/collation-support.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/locale-support.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/localization/localization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/2-using-mot/using-mot.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/4-appendix/1-references.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/4-appendix/2-glossary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/4-appendix/mot-appendix.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/mot-engine/mot-engine.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/primary-and-standby-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/11-log-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/2-checking-os-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/4-checking-database-performance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/6-checking-time-consistency.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/routine-maintenance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/slow-sql-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/administrator-guide/upgrade-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai-capabilities.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/1-standard-sql.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/ECPG.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/application-development-interfaces/application-development-interfaces.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/characteristic-description-overview.md (98%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/characteristic-description.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/case-when-without-parentheses-in-some-scenarios.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/chr-and-ascii-behave-like-oracle-in-non-UTF8.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/compat-for-oracle-hint.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/create-view-with-read-only.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/custom-type-array.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/customize-type-pass-parameter-by-name.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/define-substored-procedures-in-stored-procedures.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/for-update-supports-outer-join.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/format-error-backtrace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/generated-column-as-partition-key.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/information-schema-columns-add-extra-field.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/locate-current-sql-in-complex-stored-procedure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/merge-into-add-delete.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/mod-function-float-to-int.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/mogdb-supports-insert-all.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/oid-type-regrole-and-regnamespace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/pivot-and-unpivot.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/range-partition-table-support-numeric-interval-partition.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-for-copy-rtrim.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-java-plsql-anonymous-block-binding-variables.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-offset-as-table-and-field-names.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-passing-the-count-attribute.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-plpgsql-subtype.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-q-quote-escape-character.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-table-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/support-where-current-of.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/compatibility/type-conversion-for-union-and-decode.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/1-access-control-model.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/10-row-level-access-control.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/11-password-strength-verification.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/13-ledger-database-mechanism.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/14-transparent-data-encryption.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/3-database-encryption-authentication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/4-data-encryption-and-storage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/5-database-audit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/6-network-communication-security.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/7-resource-label.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/8-unified-audit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/9-dynamic-data-anonymization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/database-security/database-security.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/10-autonomous-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/11-global-temporary-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/16-publication-subscription.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/19-transaction-async-submit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/2-sql-hints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/20-copy-import-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/24-brin-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/25-bloom-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/3-full-text-indexing.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/5-partitioning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/7-materialized-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/8-hyperloglog.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/9-creating-an-index-online.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/enterprise-level-features.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/enterprise-level-features/event-trigger.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/1-primary-standby.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/12-parallel-logical-decoding.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/13-dcf.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/14-cm.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/15-global-syscache.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/17-two-city-three-dc-dr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/2-logical-replication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/4-logical-backup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/5-physical-backup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/7-ultimate-rto.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/8-cascaded-standby-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/9-delayed-replay.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/ddl-query-of-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/enhanced-primary-and-standby-high-availability-capabilities.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/high-availability.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-availability/table-level-parallel-recovery-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/1-cbo-optimizer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/10-xlog-no-lock-flush.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/2-llvm.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/3-vectorized-engine.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/4-hybrid-row-column-store.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/5-adaptive-compression.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/9-smp-for-parallel-execution.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/adaptive-two-phase-aggregation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/astore-row-level-compression.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/btree-index-compression.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/high-performance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/join-predicate-pushdown.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/large-page-memory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/ock-accelerated-data-transmission.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/optimizer-trace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/ordering-operator-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/parallel-index-scan.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/parallel-query-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/pbe-like-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/seqscan-prefetch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/sql-bypass.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/subtransaction-concurrent-rollback-process-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/high-performance/tracing-SQL-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/1-gray-upgrade.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/2-workload-diagnosis-report.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/3-slow-sql-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/4-session-performance-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/built-in-stack-tool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/dcf-module-tracing.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/error-when-writing-illegal-characters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/extension-splitting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/fault-diagnosis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/light-lock-export-and-analysis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/maintainability.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/pageinspect-pagehack.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/maintainability/sql-patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/distributed-analysis-capabilities.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/distributed-database-capability.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/middleware/middleware.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/DSS-enhancements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/DSS-resource-pooling.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/description-of-resource-pooling-feature.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/extreme-rto-on-demand-playback.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/primary-and-standby-dual-cluster-disaster-recovery.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/resource-pooling-operator-offloading.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/resource-pooling-performance-optimization.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/resource-pooling.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/resource-pooling/transparent-write-forwarding-within-standby-node-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/characteristic-description/workload-management/workload-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-fault-locating-methods.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/common-faults-and-identification/common-faults-and-identification.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/communication-matrix.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/1-1-stored-procedure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/4-restrictions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/4-development-process.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/development-process.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/libpq-example.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4-development-based-on-libpq/link-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/5-commissioning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/application-development-tutorial.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/design-specification.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/introduction-to-development-specifications.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/naming-specification.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/overview-of-development-specifications.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/postgresql-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/query-operations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/dev/development-specifications/syntax-specification.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/developer-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/extension.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/dblink.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/foreign-data-wrapper/file_fdw.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-constraints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-guc-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/ndpplugin-extension/ndpplugin-extension.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_bulkload-user-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_prewarm-user-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_repack-user-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/pg_trgm-user-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/postgis-extension.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/postgis-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/postgis-extension/using-postgis.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/wal2json-user-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/extension/whale.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-decoding/logical-decoding.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/logical-replication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/architecture.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/configuration-settings.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/conflicts.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/monitoring.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/publication-subscription.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/publications.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/quick-setup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/restrictions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/security.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/logical-replication/publication-subscription/subscriptions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/1-materialized-view-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/assessment-tool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-mysql-protocol-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-type-conversion.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-alias.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-json-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-password-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-call.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-engines.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-open-tables.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db-name.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_CURRENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_DIGEST.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_CURRENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.FILE_SUMMARY_BY_INSTANCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/migrating-data/data-check.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/migrating-data/full-migration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/migrating-data/incremental-migration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/migrating-data/migrating-data-from-mysql-to-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/migrating-data/quick-mysql-migration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/migrating-data/reverse-migration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/mysql-compatibility-description/mysql-compatible-description.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/partition-pruning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/partition-pruning/static-partition-pruning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-1-plpgsql-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-10-other-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-11-cursors.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-12-retry-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-13-debugging.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-14-package.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-2-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-3-data-type-conversion.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-4-arrays-and-records.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-5-declare-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-6-basic-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-7-dynamic-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-8-control-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/1-9-transaction-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/advanced-packages/advanced-packages.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/scheduled-jobs/pkg-service.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/scheduled-jobs/scheduled-jobs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/developer-guide/user-defined-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/application-development-faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/deployment-and-maintenance-faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/high-availability-faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/migration-faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/product-faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/faqs/upgrade-faqs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/glossary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cluster-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/feature-introduction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/introduction-to-cm_persist.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/manual-configuration-of-vip.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/cluster-management/safety-design.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/high-available-dcf.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/high-available-guide/high-available-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/docker-installation/docker-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-preparation/environment-requirement.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-preparation/installation-preparation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/installation-preparation/os-configuration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/manual-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/ptk-based-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/installation-guide/recommended-parameter-settings.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/mogeaver/mogeaver-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/mogeaver/mogeaver-release-notes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/mogeaver/mogeaver.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/TPCC-performance-tuning-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/performance-tuning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/hint-based-tuning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/query-execution-process.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/sql-tuning-optimizer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/sql-tuning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/tuning-process.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/typical-sql-optimization-methods.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/sql-tuning/updating-statistics.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-llvm.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-smp.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-ustore.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/configuring-vector-engine.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-memory-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/optimizing-os-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-load-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/system-tuning/system-tuning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/wdr/wdr-report.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/wdr/wdr-snapshot-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/performance-tuning/wdr/wdr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/container-based-installation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/installation-on-a-single-node.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/mogdb-access.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogdb-playground.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/mogila.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/quick-start/quick-start.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/character-sets-and-collation-for-character-type-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/character-sets-and-collation-for-client-connections.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/character-sets-and-collation-merging-rules.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/character-sets-and-collation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/column-level-character-sets-and-collation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/database-level-character-sets-and-collation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/schema-level-character-sets-and-collation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/character-sets-and-collation/table-level-character-sets-and-collation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/error-code-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-code-reference/third-party-library-error-codes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-log-reference/error-log-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/error-log-reference/kernel-error-message.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/aggregate-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/ai-feature-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/array-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/binary-string-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/bit-string-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/character-processing-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/comparison-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/conditional-expressions-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/dynamic-data-masking-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/encrypted-equality-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/event-trigger-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/fault-injection-system-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/geometric-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/global-syscache-feature-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/global-temporary-table-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/hash-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/hll-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/internal-functions/internal-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/json-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/ledger-database-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/logical-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/mathematical-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/mode-matching-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/network-address-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/obsolete-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/prompt-message-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/range-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/resource-pooling-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/security-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/sequence-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/set-returning-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/other-function.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/other-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/text-search-functions-and-operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/trigger-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/window-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/functions-and-operators/xml-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/AI-features.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/DCF-parameters-settings.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/HyperLogLog.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/MogDB-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/alarm-detection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/appendix.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/audit-switch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/auditing.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/operation-audit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/auditing/user-and-permission-audit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/automatic-vacuuming.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/backend-compression.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/backup-and-restoration-parameter.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/cm-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/connection-pool-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/developer-options.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/fault-tolerance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/file-location.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/flashback.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/global-syscache-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/global-temporary-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/guc-parameter-list.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/guc-parameter-usage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/guc-user-defined-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/ha-replication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/primary-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/sending-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/ha-replication/standby-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/huge-page-memory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/load-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/lock-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/miscellaneous-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/mot.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/multi-level-cache-management-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/other-optimizer-options.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query-planning/query-planning.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/query.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/reference-guide-guc-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/reserved-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/background-writer.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/disk-space.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/memory.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-consumption/resource-consumption.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/resource-pooling-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/rollback-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/scheduled-task.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/security-configuration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/system-performance-snapshot.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/thread-pool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/upgrade-parameters.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/wait-events.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/archiving.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/checkpoints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/log-replay.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/settings.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/reference-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/DBE_PERF.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/configuration/configuration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/file/file.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/instance/instance.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/lock/LOCKS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/lock/lock.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/memory/memory-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/object/object-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/operator/operator-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/OS_THREADS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/os/os-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/query/query-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/global_rto_status.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/session-thread/session-thread.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/utility/utility.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PERF/workload/workload-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/information-schema/information-schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/schema/schema.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/alias.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/extended-functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/extended-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/implementation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/gin-indexes/scalability.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/appendix/sql-reference-appendix.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/constant-and-macro.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/controlling-transactions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/dcl-syntax-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/ddl-syntax-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/dml-syntax-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/array-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/condition-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/row-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/simple-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/expressions/subquery-expressions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/configuration-examples.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/full-text-search.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/configurations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/limitations.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/parser.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/keywords/keywords-1.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/keywords/keywords-2.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/keywords/keywords.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/mogdb-sql.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/ordinary-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/partition-table.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-anonymous-block.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-contraints.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-cursor.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-index.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-llvm.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-lock.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference-trigger.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sql-syntax-format.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/sub-query.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/system-operation.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/transaction/sql-reference-transaction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/transaction/transaction-control.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/transaction/transaction-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-base-value.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/functions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/operators.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/type-conversion-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/type-conversion.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-reference/type-conversion/value-storage.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ABORT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-AGGREGATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-DIRECTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-EVENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-EXTENSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-FUNCTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-GROUP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-INDEX.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-LANGUAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-OPERATOR.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-PACKAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-PROCEDURE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-PUBLICATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-ROLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-RULE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SCHEMA.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SEQUENCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SERVER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SESSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SYNONYM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TABLESPACE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-TYPE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-USER-MAPPING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-USER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ALTER-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ANALYZE-ANALYSE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/BEGIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CALL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CHECKPOINT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CLEAN-CONNECTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CLOSE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CLUSTER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COMMENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COMMIT-END.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COMMIT-PREPARED.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CONNECT-BY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/COPY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-AGGREGATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-CAST.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-DIRECTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-EVENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-EXTENSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-FUNCTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-GROUP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-INDEX.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-LANGUAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-MODEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-OPERATOR.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-PACKAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-PROCEDURE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-PUBLICATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-ROLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-RULE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SCHEMA.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SEQUENCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SERVER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-SYNONYM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE-AS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TABLESPACE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-TYPE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-USER-MAPPING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-USER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/CURSOR.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DEALLOCATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DECLARE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DELETE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DELIMITER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-AGGREGATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-CAST.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-DATA-SOURCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-DIRECTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-EVENT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-EXTENSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-FUNCTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-GROUP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-INDEX.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-LANGUAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-MASKING-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-MODEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-OPERATOR.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-OWNED.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-PACKAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-PROCEDURE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-PUBLICATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-ROLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-RULE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SCHEMA.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SEQUENCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SERVER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-SYNONYM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TABLESPACE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-TYPE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-USER-MAPPING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-USER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXECUTE-DIRECT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXECUTE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXPLAIN-PLAN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/EXPLAIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/FETCH.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/GRANT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/INSERT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/LOCK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/MERGE-INTO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/MOVE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PREDICT-BY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PREPARE-TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PREPARE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/PURGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REASSIGN-OWNED.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REINDEX.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/RESET.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/REVOKE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ROLLBACK-PREPARED.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/ROLLBACK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SAVEPOINT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SELECT-INTO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SELECT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-CONSTRAINTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-ROLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET-TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SET.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHOW-EVENTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHOW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHRINK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SHUTDOWN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/START-TRANSACTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/TRUNCATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/UPDATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/VACUUM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/VALUES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/sql-syntax/sql-syntax.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/HLL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/binary-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/bit-string-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/boolean-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/character-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/date-time-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/geometric.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/json-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/monetary.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/network-address.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/numeric-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/object-identifier-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/pseudo-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/range.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/set-type.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/supported-data-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/text-search-types.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/uuid-type.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/supported-data-types/xml-type.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SHARED_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/IOS_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/system-views/system-views.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/FAQ.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/client-tool.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_cgroup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_check.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_checkos.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_checkperf.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_collector.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_dump.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_dumpall.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_encrypt.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_guc.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_om.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_plan_simulator.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_restore.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_sdr.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_ssh.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/gs_watch.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/server-tools/server-tools.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tool-overview.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tool-reference.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradechk.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security-guide.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/1-client-access-authentication.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/2-managing-users-and-their-permissions.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/3-configuring-database-audit.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/4-setting-encrypted-equality-query.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/5-setting-a-ledger-database.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/6-transparent-data-encryption.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/security-guide/security/database-security-management.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/source-code-parsing.md (100%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_about.md (95%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_ai-features.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_characteristic_description.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_common-faults-and-identification.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_communication-matrix.md (69%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_datatypes-and-sql.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_dev.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_error.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_extension-referecne.md (98%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_faqs.md (93%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_glossary.md (62%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_high_available.md (97%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_install.md (96%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_manage.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_parameters-and-tools.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_performance.md (99%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_quickstart.md (98%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_secure.md (96%) rename product/zh/docs-mogdb/{v5.1 => v6.0}/toc_system-catalogs-and-functions.md (99%) diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md b/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md deleted file mode 100644 index 90a190e4..00000000 --- a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md +++ /dev/null @@ -1,212 +0,0 @@ ---- -title: MogDB 5.0.0 -summary: MogDB 5.0.0 -author: Guo Huan -date: 2023-05-25 ---- - -# MogDB 5.0.0 - -## 1. Version Description - -MogDB 5.0.0 was officially released on 07/14/2023. As an LTS release, it is further enhanced based on version 3.0/3.1 and introduces new features from openGauss 5.0.0. - -## 2. New Features - -### 2.1 Incorporated with New Features of openGauss 5.0.0 - -- High performance: The performance of basic operators is improved. -- High security: user-level audit. -- High availability: CM supports VIP management. -- High availability: CM can be deployed on two nodes. -- High availability: The read-only detection capability of CM disks is enhanced. -- High availability: CM usability is improved. -- High intelligence: Exception detection supports self-configuration. -- Enterprise-level feature: event trigger. -- Application development interface: enhanced JDBC capabilities. -- Compatibilities: Compatible with most common MySQL syntax, including data types, operators, system functions, DDL, DML, DCL, and PL/SQL, implementing application migration without modification. - -### 2.2 Parallel Index Scanning - -In scenarios where indexes are used for queries (IndexScan, IndexOnlyScan), end-to-end performance can be improved by more than 10% in typical scenarios by using multiple threads to scan the indexes in parallel. - -- Support for normal and partitioned tables -- Automatically determines whether to enable the parallel index scanning mechanism based on cost evaluation - -- Optimizing the Stream operator to improve the data merge processing rate between parallel scanning threads. - -**Related pages**: [Parallel Index Scanning](../../characteristic-description/high-performance/parallel-index-scan.md) - -### 2.3 Parallel Query Performance Optimization - -The following operators are transformed for parallel querying to better utilize multi-core processors and memory resources to improve operator querying performance: - -- Parallel sort merge join: when the system configuration allows parallel execution and the execution plan is suitable for parallel execution, multiple threads can be used to scan and match the associated columns at the same time, thus speeding up the execution of join operations; - -- Adaptive two-phase hash agg.: when executing aggregation queries, according to the characteristics of the actual data and query conditions, in scenarios suitable for adaptive two-phase hash aggregation, unnecessary memory and disk overhead can be avoided and query performance can be improved by about 6% to 17%; - -- Runtime result caching: In some queries, if the query results can be reused, MogDB caches the results in memory so that they can be reused for subsequent queries, which reduces the overhead of repeated computations and disk accesses and improves query performance; - -**Related pages**: [Parallel Query Optimization](../../characteristic-description/high-performance/parallel-query-optimization.md), [Adaptive Two-phase Hash Aggregation](../../characteristic-description/high-performance/adaptive-two-phase-aggregation.md) - -### 2.4 Sorting Operator Optimization - -Targeted optimization of sorting operators for different scenarios to reduce resource consumption and improve sorting operator performance: - -- Rapid sorting: For sorting on fixed-length field types, a performance improvement of 2%~5% can usually be obtained by eliminating the overhead of a large number of comparison function calls; - -- Incremental sorting: when sorting a specified combination of fields, when the combination of prefix fields can be utilized on the index or intermediate query results of the order, the full sort is optimized for incremental sorting to reduce the amount of data to be processed by the sort, and thus improve performance, with the use of LIMIT scenarios, it can bring about a 10 to 100 times performance improvement effect; - -**Related pages**: [Sorting Operator Optimization](../../characteristic-description/high-performance/ordering-operator-optimization.md) - -### 2.5 SQL Bypass Enhancement - -SQL Bypass is a query optimization technique for simple SQL, and this version extends the applicable scenarios of SQL Bypass: - -- By enabling SQL Bypass, the query performance can be improved by more than 10% under large data volume, and the performance improvement is more obvious under PBE scenarios. - -**Related pages**:[SQL Bypass](../../characteristic-description/high-performance/sql-bypass.md) - -### 2.6 Astore Row-Level Compression - -When the data is written to the aStore row storage table, the data is compressed in the background, which can get 50% storage space saving in typical scenarios, and at the same time, the performance is almost lossless through the background flow control technology to reduce the occupation of system resources. - -- Compression and decompression in units of record rows, for OLTP point checking scenarios, only one row of data needs to be decompressed, there is no decompression and amplification, and better query performance can be obtained; - -- The page in memory is compressed, which can provide higher memory hit rate under the same Shared Buffer size, and thus improve query performance; - -- When MVCC (Multi-Version Concurrency Control) looks up the historical version chain, there is no need to decompress the intermediate version, only the data rows of the target version. This can greatly reduce the workload of decompression and improve query performance; - -- Adopting the scheme of sharing dictionary with multiple data pages, compared with the scheme of training dictionary with single table, the compressed dictionary can evolve automatically with the change of data, and there is no problem of gradual failure of dictionary. - -**Related pages**: [Enhancement of Astore Row-Level Compression](../../characteristic-description/high-performance/astore-row-level-compression.md) - -### 2.7 Unique Index Compression - -When a non-unique index of type B+Tree is created in the data table, there are multiple duplicate key/value key-value pairs in the index. By combining and compressing multiple key/value key-value pairs with the same key into a key->value list, you can get 50% index space saving, and at the same time, you can also improve the memory hit rate of the index page, which will in turn Improve the performance of index scan. - -**Related pages**: [BTree Index Compression](../../characteristic-description/high-performance/btree-index-compression.md) - -### 2.8 gstrace Enhancement - -gstrace is a tool for tracing kernel code execution paths, recording kernel data structures and analyzing code performance, which can help developers gain a deeper understanding of kernel code execution and improve the efficiency of problem location. gstrace is enhanced in the following aspects in this version: - -- Support for tracing observation in production environment: gstrace can work without stopping the library, allowing users to specify one or more modules and functions for tracing observation, so as to avoid interference with the normal operation of the system and ensure the stability of the production environment; - -- Export SQL execution details: gstrace can record the details of SQL execution, including query statements, execution plans, running time and so on, this information can be used for subsequent fault analysis to help quickly locate and solve the problem, thereby improving diagnostic efficiency; - -- Support for tracing and analysis of modules: gstrace currently supports tracing walwriter module, pagewriter module and checkpointer module, these modules have an important role in the database system, by tracing their execution paths and recording the relevant data structure, you can gain an in-depth understanding of the system's operation, so as to carry out performance optimization and Troubleshooting; - -- Export analysis of lightweight locks: gstrace also supports export analysis of lightweight locks. Lightweight locks are a locking mechanism used to improve the efficiency of concurrent multi-threaded access, and are widely used in database systems. By tracing and analyzing lightweight locks, it can help identify and resolve potential thread safety issues; - -- Tracing Sessions and Threads: gstrace supports tracing one or more sessions and threads so that it can be pinpointed to a specific session or thread for detailed analysis and debugging; - -- DCF module enhancements: MogDB version 5.0 adds the ability to turn on trace for the DCF module. By specifying gstrace to trace DCF module you can get DCF-related function call information and specific information of key data structures. This helps developers and debuggers to quickly locate problems and improve diagnostic efficiency. - -**Related pages**: [gstrace](../../reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md), [Lightweight Lock Export and Analysis](../../characteristic-description/maintainability/light-lock-export-and-analysis.md), [DCF Module Tracing](../../characteristic-description/maintainability/dcf-module-tracing.md), [SQL Tracing](../../characteristic-description/high-performance/tracing-SQL-function.md), [Trace Observation Enhancement](../../characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md) - -### 2.9 CM (Cluster Manager) Cluster Supports Two-node Deployments - -CM cluster supports two-node deployment and realizes the majority arbitration mechanism by introducing a third-party gateway as an arbitration node, which reduces the cluster starting cost from 3 nodes to 2 nodes: - -- When the cluster network is normal, when any party in the CM master and backup instances initiates an election, as long as it communicates successfully with the IP of the third-party gateway, it will increase its own votes, thus realizing majority decision-making; -- When the cluster network state is abnormal, any party in the CM master and backup instances finds that the communication with the CM instance at the opposite end is abnormal, but the communication with the third-party gateway IP is normal, it will consider that the opposite end may have a fault. If it is the CM master node, it will execute the down-standby process, and if it is the CM standby node, it will determine whether to execute the up-standby to realize automatic failover based on the configuration items; -- Provide optional configuration to decide whether to raise the master of the standby in network partitioning scenarios to avoid the occurrence of brain cracking problems. - -**Related pages**: [CM Supporting Two-Node Deployment](../../characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md) - -### 2.10 Oracle Compatibility Enhancement - -【1】[Support To Keep The Same Name After The End With Oracle](../../characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md) - -【2】[Support PLPGSQL subtype](../../characteristic-description/compatibility/support-plpgsql-subtype.md) - -【3】[Add %rowtype Attribute To The View](../../characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md) - -【4】[Oracle DBLink Syntax Compatibility](../../characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md) - -【5】[Support For Constants In Package As Default Values](../../characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md) - -【6】[current_date/current_time Keywords As Field Name](../../characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md) - -【7】[MogDB Supports Insert All](../../characteristic-description/compatibility/mogdb-supports-insert-all.md) - -【8】[For Update Support Outer Join](../../characteristic-description/compatibility/for-update-supports-outer-join.md) - -【9】[Support For dbms_utility.format_error_backtrace](../../characteristic-description/compatibility/format-error-backtrace.md) - -【10】[Support For Passing The Count Attribute Of An Array As A Parameter Of The Array Extend](../../characteristic-description/compatibility/support-passing-the-count-attribute.md) - -【11】[Custom Type Array](../../characteristic-description/compatibility/custom-type-array.md) - -【12】[Support Bypass Method When Merge Into Hit Index](../../characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md) - -【13】[Support Where Current Of](../../characteristic-description/compatibility/support-where-current-of.md) - -【14】[Aggregate Functions Support Keep Clause](../../characteristic-description/compatibility/aggregate-functions-support-keep-clause.md) - -【15】[Aggregate Functions Support Scenario Extensions](../../characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md) - -【16】[Support Subtracting Two Date Types To Return Numeric Type](../../characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md) - -【17】[Support table()](../../characteristic-description/compatibility/support-table-function.md) - -【18】[Remove Type Conversion Hint When Creating PACKAGE/FUNCTION/PROCEDURE](../../characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md) - -【19】[Support Q Quote Escape Character](../../characteristic-description/compatibility/support-q-quote-escape-character.md) - -【20】[Support Synonym Calls Without Parentheses For Function Without Parameters](../../characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md) - -【21】[Support For Adding Nocopy Attributes To Procedure And Function Parameters](../../characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md) - -【22】[Aggregate Functions Distinct Performance Optimization](../../characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md) - -## 3. Fixed Defects - -### 3.1 Incorporate Fixed Defects in openGauss 5.0.0 - -- I6NVAB: An error is reported during rollback and forcible rollback after gray upgrade from 3.0.3 to 5.0.0. - -- I6NK8U: When a publication/subscription name is changed to an existing name, the error message “ERROR: unsupported object class xxx” is displayed. -- I6N2QD: When ESCAPE is used in SIMILAR TO, if the escape character is Chinese, an error is reported. If the LIKE escape character is Chinese, the operation is successful. -- I6MOCS: In the B-compatible database, if the partition key of a level-2 partitioned table is the year function, an unknown error is reported when pg_get_tabledef is used after the ADD PARTITION operation is performed. -- I6LMTU: In B-compatible mode, objects in backquotes are not supported. -- I6KO5S: [Resource pooling] When the upgrade command is executed to upgrade shared storage, the upgrade fails. -- I6KRZ6: [Resource pooling] The **dsscmd du -p +data -f a** command calculates only directories but not files. -- I6IZH9: [Resource Pooling] The reform fails and does not enter the next round. The cluster is suspended. -- I6O0K6: The versions 2.0.1, 2.0.0, and 2.0.5 without the CM tool fail to be committed after being gray upgraded to version 5.0.0 with the CM tool. -- I61OX7: No error is reported when the value of the CM agent parameter **log_dir** is changed to null. After the CM agent is restarted for the change to take effect, no new CM agent log is generated. -- I6K2BZ: Chameleon migration fails due to double quotation marks. -- I6KIWQ: During Debezium+kafka incremental migration, the timestamp after the migration is incorrect. -- I6I640: When the data check tool is used to check data in 150,000 tables, the check process is suspended. - -### 3.2 Fixed Defects in MogDB 5.0.0 - -- Fix the problem of sampling the same table in the same sql, specifying the same random number seedseed, and returning different results - -- Fix a problem with xlogdump exporting IDENTITY FULL's DELETE EVENT presence - -- Fix the probabilistic mutex deadlock problem in dolphin when thread pooling is turned on. - -- Fix the problem of abnormal exit when expanding segment page space on the standby machine - -- 【TPCH】ERROR: Stream plan check failed - -- Fix the problem of slow query caused by selecting wrong query plan for Q20 under TPCH column storage - -- Fix switchover taking too long after 1000 warehouse high concurrency tpcc execution for half an hour - -- Fix gpi_interval test samples occasionally reporting errors on mogdb_function - -## 4. Compatibility - -This version supports the following operating system and CPU architecture combinations. - -| OS | CPU Architecture | Note | -| ------------------ | --------------------------------------------------- | ------------------------------------------------------------ | -| CentOS 7.x | X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | -| Redhat 7.x | X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | -| openEuler 20.03LTS | ARM (Kunpeng)、X86_64 (Intel, AMD, Hygon, ZHAOXIN) | The current version has not been verified for compatibility yet, 5.0.1 will support | -| Kylin V10 | ARM (Kunpeng)、X86_64 (Intel, AMD, Hygon, ZHAOXIN) | OM is not compatible with openssh-8.2p1-9.p06 or above (including p06, p07, p08, p09) in the Kylin V10 sp2 upgrade patch for now. | -| UOS V20-D / V20-E | ARM (Kunpeng)、X86_64 (Intel, AMD, Hygon, ZHAOXIN) | The current version has not been verified for compatibility yet, 5.0.1 will support | -| UOS V20-A | X86_64 (Intel, AMD, Hygon, ZHAOXIN) | The current version has not been verified for compatibility yet, 5.0.1 will support | \ No newline at end of file diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md b/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md deleted file mode 100644 index a2fc43ac..00000000 --- a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: MogDB 5.0.1 -summary: MogDB 5.0.1 -author: Guo Huan -date: 2023-05-25 ---- - -# MogDB 5.0.1 - -## 1. Version Description - -MogDB 5.0.1 is a patch release for MogDB 5.0.0, released on August 15, 2023, which fixes some of the defects in MogDB 5.0.0 as follows. - -## 2. New Features - -Supports decoupling of views from their dependencies, so that views can be automatically compiled when their dependencies change by triggering conditions. This feature is made possible by the new SIGHUP level GUC parameter [view_independent](../../reference-guide/guc-parameters/miscellaneous-parameters.md#view_independent), which is disabled by default. A value of true for the parameter supports updating view dependencies individually; a value of false keeps the behavior forward-compatible, i.e., modifying a view dependency reports an error. - -When this feature is enabled: - -1. view dependencies can be modified individually, such as modifying tables, modifying views, modifying functions, etc., without forcibly deleting the view; -2. supports automatic compilation when querying the view or manually compiling the view through SQL statement (ALTER VIEW view_name COMPILE). - -## 3. Fixed Defects - -1. Fixed the problem that inserting data for the first time using insert set statement in B-compatible type database schema will fail if there are backquotes in the value value. -2. Fixed the problem of repeating package when executing gs_restore multiple times to restore the database. -3. Fixed the problem that pg_probackup has wrong pid error log during execution. -4. Fixed an issue where the node_name of the new node generated is incorrect when using ptk for scaling. -5. Fixed the problem of inconsistent precision when user-defined functions return numeric types via out and return. -6. Fixed the problem of using plancache (prepare, execute statements), and partition trimming and DDL operations concurrently, with a low probability of causing errors. -7. Fixed the problem that the random function in the whale plug-in has no randomness. -8. Fixed the problem that the subquery with order by leads to incorrect results. -9. Fixed the problem that database initialization in PG compatibility mode reported an error. -10. Fix the problem that the current_date function returns results that are not updated after being cached by the prepare statement. -11. Fixed the problem that error occurs when having clause is placed in front of group by clause. -12. Fixed the problem that the funcoid saved in DBE_PLDEBUGGER is incorrect. -13. Fixed a problem where certain array series function calls would result in an error. -14. Fixed a bug that when proc_outparam_override is turned on and there are multiple out parameters of type refcursor in the function parameters, an error occurs in the call method. -15. Fixed the problem that the backup machine is down with low probability during log playback. -16. Fixed the problem of inconsistency between return_number and return result in stored procedure. -17. Fix an array out-of-bounds problem when masking passwords with escaped characters. - -## 4. Compatibility - -This version supports the following operating system and CPU architecture combinations. - -| OS | CPU Architecture | Note | -| ------------------ | --------------------------------------------------- | ------------------------------------------------------------ | -| CentOS 7.x | X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | -| Redhat 7.x | X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | -| openEuler 20.03LTS | ARM (Kunpeng)、X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | -| Kylin V10 | ARM (Kunpeng)、X86_64 (Intel, AMD, Hygon, ZHAOXIN) | OM is not compatible with openssh-8.2p1-9.p06 or above (including p06, p07, p08, p09) in the Kylin V10 sp2 upgrade patch for now. | -| UOS V20-D / V20-E | ARM (Kunpeng)、X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | -| UOS V20-A | X86_64 (Intel, AMD, Hygon, ZHAOXIN) | | \ No newline at end of file diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md b/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md deleted file mode 100644 index 920a29d5..00000000 --- a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: MogDB 5.0.2 -summary: MogDB 5.0.2 -author: Guo Huan -date: 2023-09-27 ---- - -# MogDB 5.0.2 - -## 1. Version Description - -MogDB 5.0.2 is a patch version of MogDB 5.0.0, which is released on Sep 30 of 2023. It mainly involves some bug fixes based on MogDB 5.0.1. - -
- -## 2. New Features - -1. [The standby node table-level parallel replay performance has doubled.](../../characteristic-description/high-performance/enhancement-of-wal-redo-performance.md) -2. Support binding variables in PL/SQL anonymous blocks within Java code. -3. [Added a query function for the original statement when creating views.](../../characteristic-description/high-availability/ddl-query-of-view.md) -4. [Added error prompts when importing data that exceeds the database character encoding character set range.](../../characteristic-description/maintainability/error-when-writing-illegal-characters.md) -5. [Introduced the PageHack and PageInspect tools as new additions.](../../characteristic-description/maintainability/pageinspect-pagehack.md) - -
- -## 3. Fixed Defects - -1. Fixed an issue with incorrect saved view definitions preventing direct creation based on the definition. -2. Fixed an issue where entering safe mode erroneously during index creation prevented the use of temporary tables. -3. Fixed an issue where triggers were causing residual autonomous transactions and leading to crashes. -4. Fixed an issue with the `pg_get_function_result` and `pg_get_function_arguments` functions providing incorrect results for composite type collection queries. -5. Fixed the lengthy failover process issue after a network card was brought down. -6. Fixed an issue of incorrect table selection in hash joins. -7. Fixed an issue of incorrect cost calculations in nest loops leading to suboptimal query plans. -8. Fixed an issue in stored procedures where the `COPY` statement did not display row counts correctly. -9. Fixed an issue of incorrect affected row counts returned when using `MERGE INTO` through ODBC. -10. Fixed an issue where package objects were not displaying the package name in the notice during cascade deletion. -11. Fixed an issue in Dolphin where the `DATE_FORMAT` function could not obtain the weekday value. -12. Fixed the inconsistency issue between the `TO_DAYS` function in Dolphin and MySQL. -13. Fixed the inconsistency problem in Dolphin where the `FIND_IN_SET` function's execution result differed from MySQL. -14. Fixed the error occurring when hints were included in an `INSERT ALL` statement. -15. Fixed the slow query plan generation problem caused by lengthy elements in an `IN` clause for index conditions. -16. Fixed the high memory usage issue caused by enabling the `enable_sql_bypass` parameter. -17. Fixed the error occurring when a constant constant was used as an input parameter for overloaded functions within a package. -18. Fixed the issue where the `gs_is_recycle_obj` function was not exported in version 3.0 of `gs_dump`. -19. Fixed the issue in the `CONNECT BY` functionality where `PRIOR` could not be followed by an expression. -20. Fixed the issue of a failed physical backup caused by an error in the `getppid` system function. - -
- -## 4. Behavior Change - -| Change Item | Before Upgrade | After Upgrade | -| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -| Installing the dblink plugin requires dependency packages for the environment. | No additional steps are required; you can create extension directly after installing the dblink plugin. | After installing the dblink plugin, you also need to install the libtool package in order to create extension. The installation command is `sudo yum install -y libtool-ltdl-devel`. | diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md b/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md deleted file mode 100644 index a610c70d..00000000 --- a/product/en/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Release Notes -summary: Release Notes -author: Guo Huan -date: 2022-09-27 ---- - -# Release Notes - -| Version | Release Date | Overview | -| ------------------- | ------------ | ------------------------------------------------------------ | -| [5.0.2](./5.0.2.md) | 09/30 | MogDB 5.0.2, officially released on September 30, 2023, builds on MogDB 5.0.1 by fixing some bugs and adding some new features. | -| [5.0.1](./5.0.1.md) | 08/15 | MogDB 5.0.1, officially released on August 15, 2023, builds on MogDB 5.0.0 by fixing some bugs and adding the feature of decoupling views from their dependencies. | -| [5.0.0](./5.0.0.md) | 07/14 | MogDB 5.0.0 was officially released on 07/14/2023. As an LTS release, it is further enhanced based on version 3.0/3.1 and introduces new features from openGauss 5.0.0. | \ No newline at end of file diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai-feature.md b/product/en/docs-mogdb/v6.0/AI-features/ai-feature.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai-feature.md rename to product/en/docs-mogdb/v6.0/AI-features/ai-feature.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/abo-optimizer.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/abo-optimizer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/abo-optimizer.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/abo-optimizer.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-1-x-tuner-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-1-x-tuner-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-1-x-tuner-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-1-x-tuner-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-2-preparations.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-2-preparations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-2-preparations.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-2-preparations.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-3-examples.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-3-examples.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-3-examples.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-3-examples.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-4-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-4-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-4-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-4-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-5-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-5-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-5-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-5-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-6-Troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-6-Troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-6-Troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/1-x-tuner-parameter-optimization-and-diagnosis/1-6-Troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-1-single-query-index-recommendation.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-1-single-query-index-recommendation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-1-single-query-index-recommendation.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-1-single-query-index-recommendation.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-2-virtual-index.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-2-virtual-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-2-virtual-index.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-2-virtual-index.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-3-workload-level-index-recommendation.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-3-workload-level-index-recommendation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-3-workload-level-index-recommendation.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/2-index-advisor-index-recommendation/2-3-workload-level-index-recommendation.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-1-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-1-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-1-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-1-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-2-environment-deployment.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-2-environment-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-2-environment-deployment.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-2-environment-deployment.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-3-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-3-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-3-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-3-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-4-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-4-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-4-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-4-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-5-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-5-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-5-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-5-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-6-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-6-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-6-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/3-slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/3-6-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-1-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-1-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-1-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-1-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-2-environment-deployment.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-2-environment-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-2-environment-deployment.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-2-environment-deployment.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-3-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-3-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-3-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-3-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-4-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-4-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-4-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-4-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-5-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-5-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-5-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-5-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-6-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-6-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-6-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/4-forcast-trend-prediction/4-6-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-1-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-1-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-1-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-1-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-2-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-2-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-2-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-2-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-3-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-3-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-3-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-3-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-4-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-4-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-4-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-4-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-5-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-5-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-5-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/5-sqldiag-slow-sql-discovery/5-5-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-1-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-1-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-1-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-1-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-2-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-2-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-2-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-2-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-3-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-3-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-3-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-3-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-4-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-4-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-4-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-4-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-5-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-5-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-5-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/6-sql-rewriter-sql-statement-rewriting/6-5-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-1-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-1-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-1-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-1-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-2-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-2-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-2-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-2-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-3-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-3-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-3-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-3-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-4-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-4-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-4-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-4-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-5-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-5-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-5-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/7-anomaly-detection/7-5-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/ai4db-autonomous-database-o&m.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/ai4db-autonomous-database-o&m.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/ai4db-autonomous-database-o&m.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/ai4db-autonomous-database-o&m.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/1-service.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/1-service.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/1-service.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/1-service.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/2-component.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/2-component.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/2-component.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/2-component.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/3-set.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/3-set.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/3-set.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/3-set.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/component.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/component.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/component.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/component.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/dbmind-mode.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/dbmind-mode.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/dbmind-mode.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/dbmind-mode.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/service.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/service.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/service.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/service.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/set.md b/product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/set.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/set.md rename to product/en/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/set.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/db4ai/db4ai.md b/product/en/docs-mogdb/v6.0/AI-features/db4ai/db4ai.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/db4ai/db4ai.md rename to product/en/docs-mogdb/v6.0/AI-features/db4ai/db4ai.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md b/product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md rename to product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md b/product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md rename to product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/full-process-ai.md b/product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/full-process-ai.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/full-process-ai.md rename to product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/full-process-ai.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md b/product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md rename to product/en/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md diff --git a/product/en/docs-mogdb/v5.1/AI-features/db4ai/native-db4ai-engine.md b/product/en/docs-mogdb/v6.0/AI-features/db4ai/native-db4ai-engine.md similarity index 100% rename from product/en/docs-mogdb/v5.1/AI-features/db4ai/native-db4ai-engine.md rename to product/en/docs-mogdb/v6.0/AI-features/db4ai/native-db4ai-engine.md diff --git a/product/en/docs-mogdb/v5.1/_index.md b/product/en/docs-mogdb/v6.0/_index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/_index.md rename to product/en/docs-mogdb/v6.0/_index.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/MogDB-compared-to-openGauss.md b/product/en/docs-mogdb/v6.0/about-mogdb/MogDB-compared-to-openGauss.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/MogDB-compared-to-openGauss.md rename to product/en/docs-mogdb/v6.0/about-mogdb/MogDB-compared-to-openGauss.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/about-mogdb.md b/product/en/docs-mogdb/v6.0/about-mogdb/about-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/about-mogdb.md rename to product/en/docs-mogdb/v6.0/about-mogdb/about-mogdb.md diff --git a/product/en/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md b/product/en/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md new file mode 100644 index 00000000..7815b562 --- /dev/null +++ b/product/en/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md @@ -0,0 +1,14 @@ +--- +title: Release Notes +summary: Release Notes +author: Guo Huan +date: 2022-09-27 +--- + +# Release Notes + +| Version | Release Date | Overview | +| ------- | ------------ | -------- | +| | | | +| | | | +| | | | \ No newline at end of file diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/2-docker-based-mogdb.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/2-docker-based-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/2-docker-based-mogdb.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/2-docker-based-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/DBMS-RANDOM.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/DBMS-RANDOM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/DBMS-RANDOM.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/DBMS-RANDOM.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/compat-tools.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/compat-tools.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/compat-tools.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/compat-tools.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_filedump.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_filedump.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_filedump.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_filedump.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_xlogdump.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_xlogdump.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_xlogdump.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_xlogdump.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/mogdb-monitor.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/mogdb-monitor.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/mogdb-monitor.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/mogdb-monitor.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/open-source-components.md b/product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/open-source-components.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/open-source-components/open-source-components.md rename to product/en/docs-mogdb/v6.0/about-mogdb/open-source-components/open-source-components.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/terms-of-use.md b/product/en/docs-mogdb/v6.0/about-mogdb/terms-of-use.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/terms-of-use.md rename to product/en/docs-mogdb/v6.0/about-mogdb/terms-of-use.md diff --git a/product/en/docs-mogdb/v5.1/about-mogdb/usage-limitations.md b/product/en/docs-mogdb/v6.0/about-mogdb/usage-limitations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/about-mogdb/usage-limitations.md rename to product/en/docs-mogdb/v6.0/about-mogdb/usage-limitations.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/administrator-guide.md b/product/en/docs-mogdb/v6.0/administrator-guide/administrator-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/administrator-guide.md rename to product/en/docs-mogdb/v6.0/administrator-guide/administrator-guide.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md b/product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md rename to product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration.md b/product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration.md rename to product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/flashback-restoration.md b/product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/flashback-restoration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/flashback-restoration.md rename to product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/flashback-restoration.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md b/product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md rename to product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md b/product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md rename to product/en/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/column-store-tables-management.md b/product/en/docs-mogdb/v6.0/administrator-guide/column-store-tables-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/column-store-tables-management.md rename to product/en/docs-mogdb/v6.0/administrator-guide/column-store-tables-management.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md b/product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md rename to product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/database-deployment-scenario.md b/product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/database-deployment-scenario.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/database-deployment-scenario.md rename to product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/database-deployment-scenario.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md b/product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md rename to product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md b/product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md rename to product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md b/product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md rename to product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md b/product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md rename to product/en/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md b/product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md rename to product/en/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/localization/character-set-support.md b/product/en/docs-mogdb/v6.0/administrator-guide/localization/character-set-support.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/localization/character-set-support.md rename to product/en/docs-mogdb/v6.0/administrator-guide/localization/character-set-support.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/localization/collation-support.md b/product/en/docs-mogdb/v6.0/administrator-guide/localization/collation-support.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/localization/collation-support.md rename to product/en/docs-mogdb/v6.0/administrator-guide/localization/collation-support.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/localization/locale-support.md b/product/en/docs-mogdb/v6.0/administrator-guide/localization/locale-support.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/localization/locale-support.md rename to product/en/docs-mogdb/v6.0/administrator-guide/localization/locale-support.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/localization/localization.md b/product/en/docs-mogdb/v6.0/administrator-guide/localization/localization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/localization/localization.md rename to product/en/docs-mogdb/v6.0/administrator-guide/localization/localization.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/using-mot.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/using-mot.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/using-mot.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/using-mot.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/1-references.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/1-references.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/1-references.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/1-references.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/2-glossary.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/2-glossary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/2-glossary.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/2-glossary.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/mot-appendix.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/mot-appendix.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/mot-appendix.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/mot-appendix.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/mot-engine.md b/product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/mot-engine.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/mot-engine/mot-engine.md rename to product/en/docs-mogdb/v6.0/administrator-guide/mot-engine/mot-engine.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/primary-and-standby-management.md b/product/en/docs-mogdb/v6.0/administrator-guide/primary-and-standby-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/primary-and-standby-management.md rename to product/en/docs-mogdb/v6.0/administrator-guide/primary-and-standby-management.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/11-log-reference.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/11-log-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/11-log-reference.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/11-log-reference.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/2-checking-os-parameters.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/2-checking-os-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/2-checking-os-parameters.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/2-checking-os-parameters.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/4-checking-database-performance.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/4-checking-database-performance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/4-checking-database-performance.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/4-checking-database-performance.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/6-checking-time-consistency.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/6-checking-time-consistency.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/6-checking-time-consistency.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/6-checking-time-consistency.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/routine-maintenance.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/routine-maintenance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/routine-maintenance.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/routine-maintenance.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/slow-sql-diagnosis.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/slow-sql-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/slow-sql-diagnosis.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/slow-sql-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md b/product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md rename to product/en/docs-mogdb/v6.0/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md diff --git a/product/en/docs-mogdb/v5.1/administrator-guide/upgrade-guide.md b/product/en/docs-mogdb/v6.0/administrator-guide/upgrade-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/administrator-guide/upgrade-guide.md rename to product/en/docs-mogdb/v6.0/administrator-guide/upgrade-guide.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai-capabilities.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai-capabilities.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai-capabilities.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai-capabilities.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md b/product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md rename to product/en/docs-mogdb/v6.0/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/1-standard-sql.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/1-standard-sql.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/1-standard-sql.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/1-standard-sql.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/ECPG.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/ECPG.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/ECPG.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/ECPG.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/application-development-interfaces.md b/product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/application-development-interfaces.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/application-development-interfaces.md rename to product/en/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/application-development-interfaces.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/characteristic-description-overview.md b/product/en/docs-mogdb/v6.0/characteristic-description/characteristic-description-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/characteristic-description-overview.md rename to product/en/docs-mogdb/v6.0/characteristic-description/characteristic-description-overview.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/characteristic-description.md b/product/en/docs-mogdb/v6.0/characteristic-description/characteristic-description.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/characteristic-description.md rename to product/en/docs-mogdb/v6.0/characteristic-description/characteristic-description.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/compatibility.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/compatibility.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/compatibility.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/custom-type-array.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/custom-type-array.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/custom-type-array.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/custom-type-array.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/for-update-supports-outer-join.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/for-update-supports-outer-join.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/for-update-supports-outer-join.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/for-update-supports-outer-join.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/format-error-backtrace.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/format-error-backtrace.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/format-error-backtrace.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/format-error-backtrace.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/mogdb-supports-insert-all.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/mogdb-supports-insert-all.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/mogdb-supports-insert-all.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/mogdb-supports-insert-all.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-passing-the-count-attribute.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-passing-the-count-attribute.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-passing-the-count-attribute.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-passing-the-count-attribute.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-plpgsql-subtype.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-plpgsql-subtype.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-plpgsql-subtype.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-plpgsql-subtype.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-q-quote-escape-character.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-q-quote-escape-character.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-q-quote-escape-character.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-q-quote-escape-character.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-table-function.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-table-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-table-function.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-table-function.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-where-current-of.md b/product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-where-current-of.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/compatibility/support-where-current-of.md rename to product/en/docs-mogdb/v6.0/characteristic-description/compatibility/support-where-current-of.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/1-access-control-model.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/1-access-control-model.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/1-access-control-model.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/1-access-control-model.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/10-row-level-access-control.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/10-row-level-access-control.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/10-row-level-access-control.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/10-row-level-access-control.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/11-password-strength-verification.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/11-password-strength-verification.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/11-password-strength-verification.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/11-password-strength-verification.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/13-ledger-database-mechanism.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/13-ledger-database-mechanism.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/13-ledger-database-mechanism.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/13-ledger-database-mechanism.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/14-transparent-data-encryption.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/14-transparent-data-encryption.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/14-transparent-data-encryption.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/14-transparent-data-encryption.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/3-database-encryption-authentication.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/3-database-encryption-authentication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/3-database-encryption-authentication.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/3-database-encryption-authentication.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/4-data-encryption-and-storage.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/4-data-encryption-and-storage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/4-data-encryption-and-storage.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/4-data-encryption-and-storage.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/5-database-audit.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/5-database-audit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/5-database-audit.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/5-database-audit.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/6-network-communication-security.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/6-network-communication-security.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/6-network-communication-security.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/6-network-communication-security.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/7-resource-label.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/7-resource-label.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/7-resource-label.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/7-resource-label.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/8-unified-audit.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/8-unified-audit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/8-unified-audit.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/8-unified-audit.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/9-dynamic-data-anonymization.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/9-dynamic-data-anonymization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/9-dynamic-data-anonymization.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/9-dynamic-data-anonymization.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/database-security/database-security.md b/product/en/docs-mogdb/v6.0/characteristic-description/database-security/database-security.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/database-security/database-security.md rename to product/en/docs-mogdb/v6.0/characteristic-description/database-security/database-security.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/10-autonomous-transaction.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/10-autonomous-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/10-autonomous-transaction.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/10-autonomous-transaction.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/11-global-temporary-table.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/11-global-temporary-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/11-global-temporary-table.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/11-global-temporary-table.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/16-publication-subscription.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/16-publication-subscription.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/16-publication-subscription.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/16-publication-subscription.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/19-transaction-async-submit.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/19-transaction-async-submit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/19-transaction-async-submit.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/19-transaction-async-submit.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/2-sql-hints.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/2-sql-hints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/2-sql-hints.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/2-sql-hints.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/20-copy-import-optimization.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/20-copy-import-optimization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/20-copy-import-optimization.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/20-copy-import-optimization.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/24-brin-index.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/24-brin-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/24-brin-index.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/24-brin-index.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/25-bloom-index.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/25-bloom-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/25-bloom-index.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/25-bloom-index.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/3-full-text-indexing.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/3-full-text-indexing.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/3-full-text-indexing.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/3-full-text-indexing.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/5-partitioning.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/5-partitioning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/5-partitioning.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/5-partitioning.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/7-materialized-view.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/7-materialized-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/7-materialized-view.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/7-materialized-view.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/8-hyperloglog.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/8-hyperloglog.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/8-hyperloglog.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/8-hyperloglog.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/9-creating-an-index-online.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/9-creating-an-index-online.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/9-creating-an-index-online.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/9-creating-an-index-online.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/enterprise-level-features.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/enterprise-level-features.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/enterprise-level-features.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/enterprise-level-features.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/event-trigger.md b/product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/event-trigger.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/event-trigger.md rename to product/en/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/event-trigger.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/1-primary-standby.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/1-primary-standby.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/1-primary-standby.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/1-primary-standby.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/12-parallel-logical-decoding.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/12-parallel-logical-decoding.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/12-parallel-logical-decoding.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/12-parallel-logical-decoding.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/13-dcf.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/13-dcf.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/14-cm.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/14-cm.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/14-cm.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/14-cm.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/15-global-syscache.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/15-global-syscache.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/15-global-syscache.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/15-global-syscache.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/17-two-city-three-dc-dr.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/17-two-city-three-dc-dr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/17-two-city-three-dc-dr.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/17-two-city-three-dc-dr.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/2-logical-replication.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/2-logical-replication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/2-logical-replication.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/2-logical-replication.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/4-logical-backup.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/4-logical-backup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/4-logical-backup.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/4-logical-backup.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/5-physical-backup.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/5-physical-backup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/5-physical-backup.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/5-physical-backup.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/7-ultimate-rto.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/7-ultimate-rto.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/7-ultimate-rto.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/7-ultimate-rto.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/8-cascaded-standby-server.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/8-cascaded-standby-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/8-cascaded-standby-server.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/8-cascaded-standby-server.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/9-delayed-replay.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/9-delayed-replay.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/9-delayed-replay.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/9-delayed-replay.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/ddl-query-of-view.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/ddl-query-of-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/ddl-query-of-view.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/ddl-query-of-view.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/1-cbo-optimizer.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/1-cbo-optimizer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/1-cbo-optimizer.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/1-cbo-optimizer.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/10-xlog-no-lock-flush.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/10-xlog-no-lock-flush.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/10-xlog-no-lock-flush.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/10-xlog-no-lock-flush.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/2-llvm.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/2-llvm.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/2-llvm.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/2-llvm.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/3-vectorized-engine.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/3-vectorized-engine.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/3-vectorized-engine.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/3-vectorized-engine.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/4-hybrid-row-column-store.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/4-hybrid-row-column-store.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/4-hybrid-row-column-store.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/4-hybrid-row-column-store.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/5-adaptive-compression.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/5-adaptive-compression.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/5-adaptive-compression.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/5-adaptive-compression.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/9-smp-for-parallel-execution.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/9-smp-for-parallel-execution.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/9-smp-for-parallel-execution.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/9-smp-for-parallel-execution.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/adaptive-two-phase-aggregation.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/adaptive-two-phase-aggregation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/adaptive-two-phase-aggregation.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/adaptive-two-phase-aggregation.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/astore-row-level-compression.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/astore-row-level-compression.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/astore-row-level-compression.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/astore-row-level-compression.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/btree-index-compression.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/btree-index-compression.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/btree-index-compression.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/btree-index-compression.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/high-performance.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/high-performance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/high-performance.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/high-performance.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/ock-accelerated-data-transmission.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/ock-accelerated-data-transmission.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/ock-accelerated-data-transmission.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/ock-accelerated-data-transmission.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/ordering-operator-optimization.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/ordering-operator-optimization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/ordering-operator-optimization.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/ordering-operator-optimization.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-index-scan.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-index-scan.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-index-scan.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-index-scan.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-query-optimization.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-query-optimization.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-query-optimization.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-query-optimization.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/sql-bypass.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/sql-bypass.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/sql-bypass.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/sql-bypass.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/high-performance/tracing-SQL-function.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-performance/tracing-SQL-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/high-performance/tracing-SQL-function.md rename to product/en/docs-mogdb/v6.0/characteristic-description/high-performance/tracing-SQL-function.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/1-gray-upgrade.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/1-gray-upgrade.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/1-gray-upgrade.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/1-gray-upgrade.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/2-workload-diagnosis-report.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/2-workload-diagnosis-report.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/2-workload-diagnosis-report.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/2-workload-diagnosis-report.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/3-slow-sql-diagnosis.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/3-slow-sql-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/3-slow-sql-diagnosis.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/3-slow-sql-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/4-session-performance-diagnosis.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/4-session-performance-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/4-session-performance-diagnosis.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/4-session-performance-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/built-in-stack-tool.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/built-in-stack-tool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/built-in-stack-tool.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/built-in-stack-tool.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/dcf-module-tracing.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/dcf-module-tracing.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/error-when-writing-illegal-characters.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/error-when-writing-illegal-characters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/error-when-writing-illegal-characters.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/error-when-writing-illegal-characters.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/extension-splitting.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/extension-splitting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/extension-splitting.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/extension-splitting.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/fault-diagnosis.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/fault-diagnosis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/fault-diagnosis.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/fault-diagnosis.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/light-lock-export-and-analysis.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/light-lock-export-and-analysis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/light-lock-export-and-analysis.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/light-lock-export-and-analysis.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/maintainability.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/maintainability.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/maintainability.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/maintainability.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/pageinspect-pagehack.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/pageinspect-pagehack.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/pageinspect-pagehack.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/pageinspect-pagehack.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/maintainability/sql-patch.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/sql-patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/maintainability/sql-patch.md rename to product/en/docs-mogdb/v6.0/characteristic-description/maintainability/sql-patch.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md b/product/en/docs-mogdb/v6.0/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md rename to product/en/docs-mogdb/v6.0/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/middleware/distributed-analysis-capabilities.md b/product/en/docs-mogdb/v6.0/characteristic-description/middleware/distributed-analysis-capabilities.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/middleware/distributed-analysis-capabilities.md rename to product/en/docs-mogdb/v6.0/characteristic-description/middleware/distributed-analysis-capabilities.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/middleware/distributed-database-capability.md b/product/en/docs-mogdb/v6.0/characteristic-description/middleware/distributed-database-capability.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/middleware/distributed-database-capability.md rename to product/en/docs-mogdb/v6.0/characteristic-description/middleware/distributed-database-capability.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/middleware/middleware.md b/product/en/docs-mogdb/v6.0/characteristic-description/middleware/middleware.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/middleware/middleware.md rename to product/en/docs-mogdb/v6.0/characteristic-description/middleware/middleware.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md b/product/en/docs-mogdb/v6.0/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md rename to product/en/docs-mogdb/v6.0/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md diff --git a/product/en/docs-mogdb/v5.1/characteristic-description/workload-management/workload-management.md b/product/en/docs-mogdb/v6.0/characteristic-description/workload-management/workload-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/characteristic-description/workload-management/workload-management.md rename to product/en/docs-mogdb/v6.0/characteristic-description/workload-management/workload-management.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-methods.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-methods.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-methods.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-methods.md diff --git a/product/en/docs-mogdb/v5.1/common-faults-and-identification/common-faults-and-identification.md b/product/en/docs-mogdb/v6.0/common-faults-and-identification/common-faults-and-identification.md similarity index 100% rename from product/en/docs-mogdb/v5.1/common-faults-and-identification/common-faults-and-identification.md rename to product/en/docs-mogdb/v6.0/common-faults-and-identification/common-faults-and-identification.md diff --git a/product/en/docs-mogdb/v5.1/communication-matrix.md b/product/en/docs-mogdb/v6.0/communication-matrix.md similarity index 100% rename from product/en/docs-mogdb/v5.1/communication-matrix.md rename to product/en/docs-mogdb/v6.0/communication-matrix.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/1-1-stored-procedure.md b/product/en/docs-mogdb/v6.0/developer-guide/1-1-stored-procedure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/1-1-stored-procedure.md rename to product/en/docs-mogdb/v6.0/developer-guide/1-1-stored-procedure.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md b/product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md rename to product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md b/product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md rename to product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md b/product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md rename to product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/4-restrictions.md b/product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/4-restrictions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/4-restrictions.md rename to product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/4-restrictions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md b/product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md rename to product/en/docs-mogdb/v6.0/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/4-development-process.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/4-development-process.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/4-development-process.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/4-development-process.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-process.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-process.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-process.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-process.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/libpq-example.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/libpq-example.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/libpq-example.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/libpq-example.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/5-commissioning.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/5-commissioning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/5-commissioning.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/5-commissioning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/application-development-tutorial.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/application-development-tutorial.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/application-development-tutorial.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/application-development-tutorial.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/design-specification.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/design-specification.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/design-specification.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/design-specification.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/introduction-to-development-specifications.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/introduction-to-development-specifications.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/introduction-to-development-specifications.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/introduction-to-development-specifications.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/naming-specification.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/naming-specification.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/naming-specification.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/naming-specification.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/overview-of-development-specifications.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/overview-of-development-specifications.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/overview-of-development-specifications.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/overview-of-development-specifications.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/postgresql-compatibility.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/postgresql-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/postgresql-compatibility.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/postgresql-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/query-operations.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/query-operations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/query-operations.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/query-operations.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/syntax-specification.md b/product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/syntax-specification.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/dev/development-specifications/syntax-specification.md rename to product/en/docs-mogdb/v6.0/developer-guide/dev/development-specifications/syntax-specification.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/developer-guide.md b/product/en/docs-mogdb/v6.0/developer-guide/developer-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/developer-guide.md rename to product/en/docs-mogdb/v6.0/developer-guide/developer-guide.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/extension.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/extension.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/extension.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/extension.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/dblink.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/dblink.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/dblink.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/dblink.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/file_fdw.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/file_fdw.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/file_fdw.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/file_fdw.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/pg_bulkload-user-guide.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/pg_bulkload-user-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/pg_bulkload-user-guide.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/pg_bulkload-user-guide.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/pg_prewarm-user-guide.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/pg_prewarm-user-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/pg_prewarm-user-guide.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/pg_prewarm-user-guide.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/pg_repack-user-guide.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/pg_repack-user-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/pg_repack-user-guide.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/pg_repack-user-guide.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/pg_trgm-user-guide.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/pg_trgm-user-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/pg_trgm-user-guide.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/pg_trgm-user-guide.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-extension.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-extension.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-extension.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-extension.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/using-postgis.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/using-postgis.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/using-postgis.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/using-postgis.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/wal2json-user-guide.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/wal2json-user-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/wal2json-user-guide.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/wal2json-user-guide.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/extension/whale.md b/product/en/docs-mogdb/v6.0/developer-guide/extension/whale.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/extension/whale.md rename to product/en/docs-mogdb/v6.0/developer-guide/extension/whale.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/logical-decoding.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/logical-decoding.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/logical-decoding.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/logical-decoding.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-replication.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-replication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/logical-replication.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/logical-replication.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/architecture.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/architecture.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/architecture.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/architecture.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/configuration-settings.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/configuration-settings.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/configuration-settings.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/configuration-settings.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/conflicts.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/conflicts.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/conflicts.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/conflicts.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/monitoring.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/monitoring.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/monitoring.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/monitoring.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publication-subscription.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publication-subscription.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publication-subscription.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publication-subscription.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publications.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publications.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publications.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publications.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/quick-setup.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/quick-setup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/quick-setup.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/quick-setup.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/restrictions.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/restrictions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/restrictions.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/restrictions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/security.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/security.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/security.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/security.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/subscriptions.md b/product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/subscriptions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/subscriptions.md rename to product/en/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/subscriptions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/1-materialized-view-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/1-materialized-view-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/1-materialized-view-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/1-materialized-view-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md b/product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md rename to product/en/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/assessment-tool.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/assessment-tool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/assessment-tool.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/assessment-tool.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db_name.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db_name.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db_name.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db_name.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/mysql-compatible-description.md b/product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/mysql-compatible-description.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/mysql-compatible-description.md rename to product/en/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/mysql-compatible-description.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-management.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-management.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-management.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/partition-pruning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/partition-pruning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/partition-pruning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/partition-pruning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/static-partition-pruning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/static-partition-pruning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/static-partition-pruning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/static-partition-pruning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md b/product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md rename to product/en/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-1-plpgsql-overview.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-1-plpgsql-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-1-plpgsql-overview.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-1-plpgsql-overview.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-10-other-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-10-other-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-10-other-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-10-other-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-11-cursors.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-11-cursors.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-11-cursors.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-11-cursors.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-12-retry-management.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-12-retry-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-12-retry-management.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-12-retry-management.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-13-debugging.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-13-debugging.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-13-debugging.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-13-debugging.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-14-package.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-14-package.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-14-package.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-14-package.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-2-data-types.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-2-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-2-data-types.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-2-data-types.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-3-data-type-conversion.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-3-data-type-conversion.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-3-data-type-conversion.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-3-data-type-conversion.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-4-arrays-and-records.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-4-arrays-and-records.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-4-arrays-and-records.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-4-arrays-and-records.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-5-declare-syntax.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-5-declare-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-5-declare-syntax.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-5-declare-syntax.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-6-basic-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-6-basic-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-6-basic-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-6-basic-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-7-dynamic-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-7-dynamic-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-7-dynamic-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-7-dynamic-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-8-control-statements.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-8-control-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-8-control-statements.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-8-control-statements.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-9-transaction-management.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-9-transaction-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/1-9-transaction-management.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/1-9-transaction-management.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/advanced-packages.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/advanced-packages.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/advanced-packages.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/advanced-packages.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md b/product/en/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md rename to product/en/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/scheduled-jobs/pkg-service.md b/product/en/docs-mogdb/v6.0/developer-guide/scheduled-jobs/pkg-service.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/scheduled-jobs/pkg-service.md rename to product/en/docs-mogdb/v6.0/developer-guide/scheduled-jobs/pkg-service.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/scheduled-jobs/scheduled-jobs.md b/product/en/docs-mogdb/v6.0/developer-guide/scheduled-jobs/scheduled-jobs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/scheduled-jobs/scheduled-jobs.md rename to product/en/docs-mogdb/v6.0/developer-guide/scheduled-jobs/scheduled-jobs.md diff --git a/product/en/docs-mogdb/v5.1/developer-guide/user-defined-functions.md b/product/en/docs-mogdb/v6.0/developer-guide/user-defined-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/developer-guide/user-defined-functions.md rename to product/en/docs-mogdb/v6.0/developer-guide/user-defined-functions.md diff --git a/product/en/docs-mogdb/v5.1/faqs/application-development-faqs.md b/product/en/docs-mogdb/v6.0/faqs/application-development-faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/application-development-faqs.md rename to product/en/docs-mogdb/v6.0/faqs/application-development-faqs.md diff --git a/product/en/docs-mogdb/v5.1/faqs/deployment-and-maintenance-faqs.md b/product/en/docs-mogdb/v6.0/faqs/deployment-and-maintenance-faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/deployment-and-maintenance-faqs.md rename to product/en/docs-mogdb/v6.0/faqs/deployment-and-maintenance-faqs.md diff --git a/product/en/docs-mogdb/v5.1/faqs/faqs.md b/product/en/docs-mogdb/v6.0/faqs/faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/faqs.md rename to product/en/docs-mogdb/v6.0/faqs/faqs.md diff --git a/product/en/docs-mogdb/v5.1/faqs/high-availability-faqs.md b/product/en/docs-mogdb/v6.0/faqs/high-availability-faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/high-availability-faqs.md rename to product/en/docs-mogdb/v6.0/faqs/high-availability-faqs.md diff --git a/product/en/docs-mogdb/v5.1/faqs/migration-faqs.md b/product/en/docs-mogdb/v6.0/faqs/migration-faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/migration-faqs.md rename to product/en/docs-mogdb/v6.0/faqs/migration-faqs.md diff --git a/product/en/docs-mogdb/v5.1/faqs/product-faqs.md b/product/en/docs-mogdb/v6.0/faqs/product-faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/product-faqs.md rename to product/en/docs-mogdb/v6.0/faqs/product-faqs.md diff --git a/product/en/docs-mogdb/v5.1/faqs/upgrade-faqs.md b/product/en/docs-mogdb/v6.0/faqs/upgrade-faqs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/faqs/upgrade-faqs.md rename to product/en/docs-mogdb/v6.0/faqs/upgrade-faqs.md diff --git a/product/en/docs-mogdb/v5.1/glossary.md b/product/en/docs-mogdb/v6.0/glossary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/glossary.md rename to product/en/docs-mogdb/v6.0/glossary.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cluster-management.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cluster-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cluster-management.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cluster-management.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/feature-introduction.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/feature-introduction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/feature-introduction.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/feature-introduction.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_persist.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_persist.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_persist.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_persist.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/manual-configuration-of-vip.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/manual-configuration-of-vip.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/manual-configuration-of-vip.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/manual-configuration-of-vip.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/safety-design.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/cluster-management/safety-design.md rename to product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/high-available-dcf.md b/product/en/docs-mogdb/v6.0/high-available-guide/high-available-dcf.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/high-available-dcf.md rename to product/en/docs-mogdb/v6.0/high-available-guide/high-available-dcf.md diff --git a/product/en/docs-mogdb/v5.1/high-available-guide/high-available-guide.md b/product/en/docs-mogdb/v6.0/high-available-guide/high-available-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/high-available-guide/high-available-guide.md rename to product/en/docs-mogdb/v6.0/high-available-guide/high-available-guide.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/docker-installation/docker-installation.md b/product/en/docs-mogdb/v6.0/installation-guide/docker-installation/docker-installation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/docker-installation/docker-installation.md rename to product/en/docs-mogdb/v6.0/installation-guide/docker-installation/docker-installation.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/installation-guide.md b/product/en/docs-mogdb/v6.0/installation-guide/installation-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/installation-guide.md rename to product/en/docs-mogdb/v6.0/installation-guide/installation-guide.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/installation-preparation/environment-requirement.md b/product/en/docs-mogdb/v6.0/installation-guide/installation-preparation/environment-requirement.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/installation-preparation/environment-requirement.md rename to product/en/docs-mogdb/v6.0/installation-guide/installation-preparation/environment-requirement.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/installation-preparation/installation-preparation.md b/product/en/docs-mogdb/v6.0/installation-guide/installation-preparation/installation-preparation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/installation-preparation/installation-preparation.md rename to product/en/docs-mogdb/v6.0/installation-guide/installation-preparation/installation-preparation.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/installation-preparation/os-configuration.md b/product/en/docs-mogdb/v6.0/installation-guide/installation-preparation/os-configuration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/installation-preparation/os-configuration.md rename to product/en/docs-mogdb/v6.0/installation-guide/installation-preparation/os-configuration.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/manual-installation.md b/product/en/docs-mogdb/v6.0/installation-guide/manual-installation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/manual-installation.md rename to product/en/docs-mogdb/v6.0/installation-guide/manual-installation.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/ptk-based-installation.md b/product/en/docs-mogdb/v6.0/installation-guide/ptk-based-installation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/ptk-based-installation.md rename to product/en/docs-mogdb/v6.0/installation-guide/ptk-based-installation.md diff --git a/product/en/docs-mogdb/v5.1/installation-guide/recommended-parameter-settings.md b/product/en/docs-mogdb/v6.0/installation-guide/recommended-parameter-settings.md similarity index 100% rename from product/en/docs-mogdb/v5.1/installation-guide/recommended-parameter-settings.md rename to product/en/docs-mogdb/v6.0/installation-guide/recommended-parameter-settings.md diff --git a/product/en/docs-mogdb/v5.1/mogeaver/mogeaver-overview.md b/product/en/docs-mogdb/v6.0/mogeaver/mogeaver-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/mogeaver/mogeaver-overview.md rename to product/en/docs-mogdb/v6.0/mogeaver/mogeaver-overview.md diff --git a/product/en/docs-mogdb/v5.1/mogeaver/mogeaver-release-notes.md b/product/en/docs-mogdb/v6.0/mogeaver/mogeaver-release-notes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/mogeaver/mogeaver-release-notes.md rename to product/en/docs-mogdb/v6.0/mogeaver/mogeaver-release-notes.md diff --git a/product/en/docs-mogdb/v5.1/mogeaver/mogeaver.md b/product/en/docs-mogdb/v6.0/mogeaver/mogeaver.md similarity index 100% rename from product/en/docs-mogdb/v5.1/mogeaver/mogeaver.md rename to product/en/docs-mogdb/v6.0/mogeaver/mogeaver.md diff --git a/product/en/docs-mogdb/v5.1/overview.md b/product/en/docs-mogdb/v6.0/overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/overview.md rename to product/en/docs-mogdb/v6.0/overview.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/TPCC-performance-tuning-guide.md b/product/en/docs-mogdb/v6.0/performance-tuning/TPCC-performance-tuning-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/TPCC-performance-tuning-guide.md rename to product/en/docs-mogdb/v6.0/performance-tuning/TPCC-performance-tuning-guide.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/performance-tuning.md b/product/en/docs-mogdb/v6.0/performance-tuning/performance-tuning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/performance-tuning.md rename to product/en/docs-mogdb/v6.0/performance-tuning/performance-tuning.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/hint-based-tuning.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/hint-based-tuning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/hint-based-tuning.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/hint-based-tuning.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/query-execution-process.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/query-execution-process.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/query-execution-process.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/query-execution-process.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning-optimizer.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning-optimizer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning-optimizer.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning-optimizer.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/tuning-process.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/tuning-process.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/tuning-process.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/tuning-process.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/typical-sql-optimization-methods.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/typical-sql-optimization-methods.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/typical-sql-optimization-methods.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/typical-sql-optimization-methods.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/updating-statistics.md b/product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/updating-statistics.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/sql-tuning/updating-statistics.md rename to product/en/docs-mogdb/v6.0/performance-tuning/sql-tuning/updating-statistics.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-llvm.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-llvm.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-llvm.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-llvm.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-smp.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-smp.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-smp.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-smp.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-ustore.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-ustore.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-ustore.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-ustore.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-vector-engine.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-vector-engine.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-vector-engine.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-vector-engine.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-os-parameters.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-os-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-os-parameters.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-os-parameters.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/system-tuning.md b/product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/system-tuning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/system-tuning/system-tuning.md rename to product/en/docs-mogdb/v6.0/performance-tuning/system-tuning/system-tuning.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/wdr/wdr-report.md b/product/en/docs-mogdb/v6.0/performance-tuning/wdr/wdr-report.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/wdr/wdr-report.md rename to product/en/docs-mogdb/v6.0/performance-tuning/wdr/wdr-report.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/wdr/wdr-snapshot-schema.md b/product/en/docs-mogdb/v6.0/performance-tuning/wdr/wdr-snapshot-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/wdr/wdr-snapshot-schema.md rename to product/en/docs-mogdb/v6.0/performance-tuning/wdr/wdr-snapshot-schema.md diff --git a/product/en/docs-mogdb/v5.1/performance-tuning/wdr/wdr.md b/product/en/docs-mogdb/v6.0/performance-tuning/wdr/wdr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/performance-tuning/wdr/wdr.md rename to product/en/docs-mogdb/v6.0/performance-tuning/wdr/wdr.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/container-based-installation.md b/product/en/docs-mogdb/v6.0/quick-start/container-based-installation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/container-based-installation.md rename to product/en/docs-mogdb/v6.0/quick-start/container-based-installation.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/installation-on-a-single-node.md b/product/en/docs-mogdb/v6.0/quick-start/installation-on-a-single-node.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/installation-on-a-single-node.md rename to product/en/docs-mogdb/v6.0/quick-start/installation-on-a-single-node.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/mogdb-access.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/mogdb-access.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/mogdb-access.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/mogdb-access.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogdb-playground.md b/product/en/docs-mogdb/v6.0/quick-start/mogdb-playground.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogdb-playground.md rename to product/en/docs-mogdb/v6.0/quick-start/mogdb-playground.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/mogila.md b/product/en/docs-mogdb/v6.0/quick-start/mogila.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/mogila.md rename to product/en/docs-mogdb/v6.0/quick-start/mogila.md diff --git a/product/en/docs-mogdb/v5.1/quick-start/quick-start.md b/product/en/docs-mogdb/v6.0/quick-start/quick-start.md similarity index 100% rename from product/en/docs-mogdb/v5.1/quick-start/quick-start.md rename to product/en/docs-mogdb/v6.0/quick-start/quick-start.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/error-code-reference.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/error-code-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/error-code-reference.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/error-code-reference.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/third-party-library-error-codes.md b/product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/third-party-library-error-codes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-code-reference/third-party-library-error-codes.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-code-reference/third-party-library-error-codes.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-log-reference/error-log-reference.md b/product/en/docs-mogdb/v6.0/reference-guide/error-log-reference/error-log-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-log-reference/error-log-reference.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-log-reference/error-log-reference.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/error-log-reference/kernel-error-message.md b/product/en/docs-mogdb/v6.0/reference-guide/error-log-reference/kernel-error-message.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/error-log-reference/kernel-error-message.md rename to product/en/docs-mogdb/v6.0/reference-guide/error-log-reference/kernel-error-message.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/aggregate-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/aggregate-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/aggregate-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/aggregate-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/ai-feature-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/ai-feature-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/ai-feature-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/ai-feature-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/array-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/array-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/array-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/array-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/binary-string-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/binary-string-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/binary-string-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/binary-string-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/bit-string-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/bit-string-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/bit-string-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/bit-string-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/character-processing-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/character-processing-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/character-processing-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/character-processing-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/comparison-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/comparison-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/comparison-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/comparison-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/conditional-expressions-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/conditional-expressions-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/conditional-expressions-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/conditional-expressions-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/dynamic-data-masking-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/dynamic-data-masking-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/dynamic-data-masking-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/dynamic-data-masking-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/encrypted-equality-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/encrypted-equality-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/encrypted-equality-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/encrypted-equality-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/event-trigger-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/event-trigger-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/event-trigger-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/event-trigger-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/fault-injection-system-function.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/fault-injection-system-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/fault-injection-system-function.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/fault-injection-system-function.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/geometric-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/geometric-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/geometric-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/geometric-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-syscache-feature-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-syscache-feature-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-syscache-feature-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-syscache-feature-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-temporary-table-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-temporary-table-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-temporary-table-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-temporary-table-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/hash-function.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/hash-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/hash-function.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/hash-function.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/hll-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/hll-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/hll-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/hll-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/json-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/json-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/json-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/json-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/ledger-database-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/ledger-database-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/ledger-database-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/ledger-database-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/logical-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/logical-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/logical-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/logical-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/mathematical-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/mathematical-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/mathematical-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/mathematical-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/mode-matching-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/mode-matching-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/mode-matching-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/mode-matching-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/network-address-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/network-address-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/network-address-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/network-address-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/obsolete-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/obsolete-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/obsolete-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/obsolete-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/prompt-message-function.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/prompt-message-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/prompt-message-function.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/prompt-message-function.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/range-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/range-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/range-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/range-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/security-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/security-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/security-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/security-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/sequence-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/sequence-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/sequence-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/sequence-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/set-returning-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/set-returning-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/set-returning-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/set-returning-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/guc-value-inquiry-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/guc-value-inquiry-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/guc-value-inquiry-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/guc-value-inquiry-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/other-function.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/other-function.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/other-function.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/other-function.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/other-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/other-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/other-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/other-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/text-search-functions-and-operators.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/text-search-functions-and-operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/text-search-functions-and-operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/text-search-functions-and-operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/trigger-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/trigger-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/trigger-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/trigger-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/window-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/window-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/window-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/window-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/xml-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/xml-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/functions-and-operators/xml-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/functions-and-operators/xml-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/AI-features.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/AI-features.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/AI-features.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/AI-features.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/DCF-parameters-settings.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/DCF-parameters-settings.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/DCF-parameters-settings.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/DCF-parameters-settings.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/HyperLogLog.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/HyperLogLog.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/HyperLogLog.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/HyperLogLog.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/MogDB-transaction.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/MogDB-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/MogDB-transaction.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/MogDB-transaction.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/alarm-detection.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/alarm-detection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/alarm-detection.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/alarm-detection.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/appendix.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/appendix.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/appendix.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/appendix.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/audit-switch.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/audit-switch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/audit-switch.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/audit-switch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/auditing.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/auditing.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/auditing.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/auditing.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/operation-audit.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/operation-audit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/operation-audit.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/operation-audit.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/user-and-permission-audit.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/user-and-permission-audit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/user-and-permission-audit.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/user-and-permission-audit.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/automatic-vacuuming.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/automatic-vacuuming.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/automatic-vacuuming.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/automatic-vacuuming.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/backend-compression.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/backend-compression.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/backend-compression.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/backend-compression.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/backup-and-restoration-parameter.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/backup-and-restoration-parameter.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/backup-and-restoration-parameter.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/backup-and-restoration-parameter.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/cm-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/cm-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/cm-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/cm-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-pool-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-pool-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-pool-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-pool-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/developer-options.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/developer-options.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/developer-options.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/developer-options.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/fault-tolerance.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/fault-tolerance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/fault-tolerance.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/fault-tolerance.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/file-location.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/file-location.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/file-location.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/file-location.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/flashback.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/flashback.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/flashback.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/flashback.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/global-syscache-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/global-syscache-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/global-syscache-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/global-syscache-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/global-temporary-table.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/global-temporary-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/global-temporary-table.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/global-temporary-table.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-list.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-list.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-list.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-list.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-usage.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-usage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-usage.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-usage.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-user-defined-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-user-defined-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-user-defined-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-user-defined-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/ha-replication.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/ha-replication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/ha-replication.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/ha-replication.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/primary-server.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/primary-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/primary-server.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/primary-server.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/sending-server.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/sending-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/sending-server.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/sending-server.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/standby-server.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/standby-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/standby-server.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/standby-server.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/load-management.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/load-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/load-management.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/load-management.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/lock-management.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/lock-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/lock-management.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/lock-management.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/miscellaneous-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/miscellaneous-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/miscellaneous-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/miscellaneous-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/mot.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/mot.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/mot.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/mot.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/other-optimizer-options.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/other-optimizer-options.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/other-optimizer-options.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/other-optimizer-options.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/query-planning.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/query-planning.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/query-planning.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/query-planning.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/query.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/query.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/reference-guide-guc-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/reference-guide-guc-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/reference-guide-guc-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/reference-guide-guc-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/reserved-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/reserved-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/reserved-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/reserved-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/background-writer.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/background-writer.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/background-writer.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/background-writer.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/disk-space.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/disk-space.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/disk-space.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/disk-space.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/memory.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/memory.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/memory.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/memory.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/resource-consumption.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/resource-consumption.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/resource-consumption.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/resource-consumption.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/rollback-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/rollback-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/rollback-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/rollback-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/scheduled-task.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/scheduled-task.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/scheduled-task.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/scheduled-task.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/security-configuration.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/security-configuration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/security-configuration.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/security-configuration.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/system-performance-snapshot.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/system-performance-snapshot.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/system-performance-snapshot.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/system-performance-snapshot.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/thread-pool.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/thread-pool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/thread-pool.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/thread-pool.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/upgrade-parameters.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/upgrade-parameters.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/upgrade-parameters.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/upgrade-parameters.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/wait-events.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/wait-events.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/wait-events.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/wait-events.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/archiving.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/archiving.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/archiving.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/archiving.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/checkpoints.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/checkpoints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/checkpoints.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/checkpoints.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/settings.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/settings.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/settings.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/settings.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md b/product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md rename to product/en/docs-mogdb/v6.0/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/reference-guide.md b/product/en/docs-mogdb/v6.0/reference-guide/reference-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/reference-guide.md rename to product/en/docs-mogdb/v6.0/reference-guide/reference-guide.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/DBE_PERF.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/DBE_PERF.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/DBE_PERF.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/DBE_PERF.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/configuration.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/configuration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/configuration.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/configuration.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/file.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/file.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/file.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/file.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/instance.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/instance.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/instance.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/instance.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/LOCKS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/LOCKS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/LOCKS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/LOCKS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/lock.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/lock.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/lock.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/lock.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GS_SHARED_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GS_SHARED_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GS_SHARED_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GS_SHARED_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/memory-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/memory-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/memory-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/memory-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/object-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/object-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/object-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/object-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/operator-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/operator-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/operator-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/operator-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_THREADS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_THREADS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_THREADS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_THREADS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/os-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/os-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/os-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/os-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/query-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/query-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/query-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/query-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_rto_status.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_rto_status.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_rto_status.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_rto_status.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/session-thread.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/session-thread.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/session-thread.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/session-thread.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/utility.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/utility.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/utility.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/utility.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/workload-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/workload-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/workload-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/workload-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/information-schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/information-schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/information-schema/information-schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/information-schema/information-schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/schema/schema.md b/product/en/docs-mogdb/v6.0/reference-guide/schema/schema.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/schema/schema.md rename to product/en/docs-mogdb/v6.0/reference-guide/schema/schema.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/alias.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/alias.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/alias.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/alias.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/appendix.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/appendix.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/appendix.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/appendix.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-functions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-syntax.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-syntax.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-syntax.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/implementation.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/implementation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/implementation.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/implementation.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/scalability.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/scalability.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/scalability.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/scalability.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/constant-and-macro.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/constant-and-macro.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/constant-and-macro.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/constant-and-macro.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/controlling-transactions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/controlling-transactions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/controlling-transactions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/controlling-transactions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/dcl-syntax-overview.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/dcl-syntax-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/dcl-syntax-overview.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/dcl-syntax-overview.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/ddl-syntax-overview.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/ddl-syntax-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/ddl-syntax-overview.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/ddl-syntax-overview.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/dml-syntax-overview.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/dml-syntax-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/dml-syntax-overview.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/dml-syntax-overview.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/array-expressions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/array-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/array-expressions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/array-expressions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/condition-expressions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/condition-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/condition-expressions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/condition-expressions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/expressions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/expressions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/expressions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/row-expressions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/row-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/row-expressions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/row-expressions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/simple-expressions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/simple-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/simple-expressions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/simple-expressions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/subquery-expressions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/subquery-expressions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/subquery-expressions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/subquery-expressions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/configuration-examples.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/configuration-examples.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/configuration-examples.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/configuration-examples.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/full-text-search.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/full-text-search.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/full-text-search.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/full-text-search.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/configurations.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/configurations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/configurations.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/configurations.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/limitations.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/limitations.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/limitations.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/limitations.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/parser.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/parser.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/parser.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/parser.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-1.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-1.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-1.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-1.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-2.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-2.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-2.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-2.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/mogdb-sql.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/mogdb-sql.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/mogdb-sql.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/mogdb-sql.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/ordinary-table.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/ordinary-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/ordinary-table.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/ordinary-table.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/partition-table.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/partition-table.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-anonymous-block.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-anonymous-block.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-anonymous-block.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-anonymous-block.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-contraints.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-contraints.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-contraints.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-contraints.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-cursor.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-cursor.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-cursor.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-cursor.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-index.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-index.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-index.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-index.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-llvm.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-llvm.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-llvm.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-llvm.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-lock.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-lock.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-lock.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-lock.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-trigger.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-trigger.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-trigger.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-trigger.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-syntax-format.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-syntax-format.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sql-syntax-format.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sql-syntax-format.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sub-query.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sub-query.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/sub-query.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/sub-query.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/system-operation.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/system-operation.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/system-operation.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/system-operation.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/sql-reference-transaction.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/sql-reference-transaction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/sql-reference-transaction.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/sql-reference-transaction.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-control.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-control.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-control.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-control.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-management.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-management.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-management.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-base-value.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-base-value.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-base-value.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-base-value.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/functions.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/functions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/functions.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/functions.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/operators.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/operators.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/operators.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/operators.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion-overview.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion-overview.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion-overview.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/value-storage.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/value-storage.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/value-storage.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/value-storage.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ABORT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ABORT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ABORT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ABORT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AGGREGATE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AGGREGATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AGGREGATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AGGREGATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DIRECTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DIRECTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DIRECTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DIRECTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EXTENSION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EXTENSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EXTENSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EXTENSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FUNCTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FUNCTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FUNCTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FUNCTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GROUP.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GROUP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GROUP.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GROUP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-INDEX.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-INDEX.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-INDEX.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-INDEX.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LANGUAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LANGUAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LANGUAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LANGUAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-OPERATOR.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-OPERATOR.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-OPERATOR.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-OPERATOR.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PACKAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PACKAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PACKAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PACKAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PROCEDURE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PROCEDURE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PROCEDURE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PROCEDURE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PUBLICATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PUBLICATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PUBLICATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PUBLICATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RULE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RULE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RULE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RULE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SCHEMA.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SCHEMA.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SCHEMA.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SCHEMA.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SEQUENCE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SEQUENCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SEQUENCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SEQUENCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SERVER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SERVER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SERVER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SERVER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SESSION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SESSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SESSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SESSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYNONYM.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYNONYM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYNONYM.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYNONYM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLESPACE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLESPACE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLESPACE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLESPACE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TYPE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TYPE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TYPE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TYPE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER-MAPPING.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER-MAPPING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER-MAPPING.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER-MAPPING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ANALYZE-ANALYSE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ANALYZE-ANALYSE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ANALYZE-ANALYSE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ANALYZE-ANALYSE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/BEGIN.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/BEGIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/BEGIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/BEGIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CALL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CALL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CALL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CALL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CHECKPOINT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CHECKPOINT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CHECKPOINT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CHECKPOINT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CLEAN-CONNECTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CLEAN-CONNECTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CLEAN-CONNECTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CLEAN-CONNECTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CLOSE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CLOSE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CLOSE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CLOSE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CLUSTER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CLUSTER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CLUSTER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CLUSTER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMENT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMENT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMENT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMENT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-END.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-END.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-END.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-END.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-PREPARED.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-PREPARED.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-PREPARED.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-PREPARED.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CONNECT-BY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CONNECT-BY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CONNECT-BY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CONNECT-BY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COPY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COPY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/COPY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/COPY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AGGREGATE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AGGREGATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AGGREGATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AGGREGATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CAST.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CAST.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CAST.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CAST.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DIRECTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DIRECTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DIRECTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DIRECTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EXTENSION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EXTENSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EXTENSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EXTENSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FUNCTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FUNCTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FUNCTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FUNCTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-GROUP.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-GROUP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-GROUP.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-GROUP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INDEX.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INDEX.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INDEX.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INDEX.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-LANGUAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-LANGUAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-LANGUAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-LANGUAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MODEL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MODEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MODEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MODEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-OPERATOR.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-OPERATOR.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-OPERATOR.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-OPERATOR.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PACKAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PACKAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PACKAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PACKAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PROCEDURE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PROCEDURE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PROCEDURE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PROCEDURE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PUBLICATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PUBLICATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PUBLICATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PUBLICATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RULE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RULE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RULE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RULE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SCHEMA.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SCHEMA.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SCHEMA.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SCHEMA.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SEQUENCE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SEQUENCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SEQUENCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SEQUENCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SERVER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SERVER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SERVER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SERVER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SYNONYM.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SYNONYM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SYNONYM.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SYNONYM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-AS.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-AS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-AS.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-AS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLESPACE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLESPACE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLESPACE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLESPACE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TYPE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TYPE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TYPE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TYPE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER-MAPPING.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER-MAPPING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER-MAPPING.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER-MAPPING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CURSOR.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CURSOR.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/CURSOR.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/CURSOR.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DEALLOCATE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DEALLOCATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DEALLOCATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DEALLOCATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DECLARE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DECLARE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DECLARE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DECLARE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DELETE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DELETE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DELETE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DELETE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DELIMITER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DELIMITER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DELIMITER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DELIMITER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DO.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DO.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AGGREGATE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AGGREGATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AGGREGATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AGGREGATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CAST.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CAST.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CAST.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CAST.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATA-SOURCE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATA-SOURCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATA-SOURCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATA-SOURCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DIRECTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DIRECTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DIRECTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DIRECTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EXTENSION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EXTENSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EXTENSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EXTENSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FUNCTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FUNCTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FUNCTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FUNCTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GROUP.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GROUP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GROUP.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GROUP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-INDEX.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-INDEX.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-INDEX.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-INDEX.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-LANGUAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-LANGUAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-LANGUAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-LANGUAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MASKING-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MASKING-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MASKING-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MASKING-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MODEL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MODEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MODEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MODEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OPERATOR.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OPERATOR.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OPERATOR.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OPERATOR.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OWNED.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OWNED.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OWNED.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OWNED.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PACKAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PACKAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PACKAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PACKAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PROCEDURE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PROCEDURE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PROCEDURE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PROCEDURE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PUBLICATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PUBLICATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PUBLICATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PUBLICATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RULE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RULE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RULE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RULE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SCHEMA.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SCHEMA.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SCHEMA.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SCHEMA.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SEQUENCE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SEQUENCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SEQUENCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SEQUENCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SERVER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SERVER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SERVER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SERVER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SYNONYM.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SYNONYM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SYNONYM.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SYNONYM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLESPACE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLESPACE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLESPACE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLESPACE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TYPE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TYPE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TYPE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TYPE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER-MAPPING.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER-MAPPING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER-MAPPING.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER-MAPPING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE-DIRECT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE-DIRECT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE-DIRECT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE-DIRECT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN-PLAN.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN-PLAN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN-PLAN.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN-PLAN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/FETCH.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/FETCH.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/FETCH.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/FETCH.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/GRANT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/GRANT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/GRANT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/GRANT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/INSERT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/INSERT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/INSERT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/INSERT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/LOCK.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/LOCK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/LOCK.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/LOCK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/MERGE-INTO.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/MERGE-INTO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/MERGE-INTO.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/MERGE-INTO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/MOVE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/MOVE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/MOVE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/MOVE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PREDICT-BY.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PREDICT-BY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PREDICT-BY.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PREDICT-BY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE-TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE-TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE-TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE-TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PURGE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PURGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/PURGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/PURGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REASSIGN-OWNED.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REASSIGN-OWNED.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REASSIGN-OWNED.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REASSIGN-OWNED.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REINDEX.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REINDEX.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REINDEX.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REINDEX.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/RESET.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/RESET.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/RESET.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/RESET.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REVOKE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REVOKE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/REVOKE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/REVOKE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-PREPARED.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-PREPARED.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-PREPARED.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-PREPARED.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SAVEPOINT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SAVEPOINT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SAVEPOINT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SAVEPOINT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT-INTO.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT-INTO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT-INTO.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT-INTO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-CONSTRAINTS.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-CONSTRAINTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-CONSTRAINTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-CONSTRAINTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-ROLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-ROLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-ROLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-ROLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SET.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SET.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW-EVENTS.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW-EVENTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW-EVENTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW-EVENTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHRINK.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHRINK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHRINK.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHRINK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHUTDOWN.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHUTDOWN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SHUTDOWN.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SHUTDOWN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/START-TRANSACTION.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/START-TRANSACTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/START-TRANSACTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/START-TRANSACTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/TRUNCATE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/TRUNCATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/TRUNCATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/TRUNCATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/UPDATE.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/UPDATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/UPDATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/UPDATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/VACUUM.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/VACUUM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/VACUUM.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/VACUUM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/VALUES.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/VALUES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/VALUES.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/VALUES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/sql-syntax.md b/product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/sql-syntax.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/sql-syntax/sql-syntax.md rename to product/en/docs-mogdb/v6.0/reference-guide/sql-syntax/sql-syntax.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/HLL.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/HLL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/HLL.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/HLL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/binary-data-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/binary-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/binary-data-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/binary-data-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/bit-string-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/bit-string-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/bit-string-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/bit-string-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/boolean-data-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/boolean-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/boolean-data-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/boolean-data-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/character-data-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/character-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/character-data-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/character-data-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/date-time-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/date-time-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/date-time-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/date-time-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/geometric.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/geometric.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/geometric.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/geometric.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/json-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/json-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/json-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/json-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/monetary.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/monetary.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/monetary.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/monetary.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/network-address.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/network-address.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/network-address.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/network-address.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/numeric-data-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/numeric-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/numeric-data-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/numeric-data-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/object-identifier-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/object-identifier-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/object-identifier-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/object-identifier-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/pseudo-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/pseudo-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/pseudo-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/pseudo-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/range.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/range.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/range.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/range.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/set-type.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/set-type.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/set-type.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/set-type.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/supported-data-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/supported-data-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/supported-data-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/supported-data-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/text-search-types.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/text-search-types.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/text-search-types.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/text-search-types.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/uuid-type.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/uuid-type.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/uuid-type.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/uuid-type.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/xml-type.md b/product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/xml-type.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/supported-data-types/xml-type.md rename to product/en/docs-mogdb/v6.0/reference-guide/supported-data-types/xml-type.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/system-views.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/system-views.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/system-views.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/system-views.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md b/product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md rename to product/en/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/FAQ.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/FAQ.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/FAQ.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/FAQ.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/client-tool.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/client-tool.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/client-tool.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/client-tool.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/command-reference.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/command-reference.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/command-reference.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_cgroup.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_cgroup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_cgroup.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_cgroup.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_check.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_check.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_check.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_check.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkos.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkos.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkos.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkos.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkperf.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkperf.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkperf.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkperf.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_collector.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_collector.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_collector.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_collector.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dump.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dump.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dump.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dump.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dumpall.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dumpall.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dumpall.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dumpall.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_encrypt.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_encrypt.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_encrypt.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_encrypt.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_guc.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_guc.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_guc.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_guc.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_om.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_om.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_om.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_om.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_plan_simulator.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_plan_simulator.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_plan_simulator.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_plan_simulator.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_restore.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_restore.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_restore.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_restore.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_sdr.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_sdr.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_sdr.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_sdr.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_ssh.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_ssh.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_ssh.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_ssh.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_watch.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_watch.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_watch.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_watch.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/server-tools.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/server-tools.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/server-tools.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/server-tools.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tool-overview.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tool-overview.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tool-overview.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tool-overview.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tool-reference.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tool-reference.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tool-reference.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tool-reference.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md diff --git a/product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md b/product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md similarity index 100% rename from product/en/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md rename to product/en/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security-guide.md b/product/en/docs-mogdb/v6.0/security-guide/security-guide.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security-guide.md rename to product/en/docs-mogdb/v6.0/security-guide/security-guide.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/1-client-access-authentication.md b/product/en/docs-mogdb/v6.0/security-guide/security/1-client-access-authentication.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/1-client-access-authentication.md rename to product/en/docs-mogdb/v6.0/security-guide/security/1-client-access-authentication.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/2-managing-users-and-their-permissions.md b/product/en/docs-mogdb/v6.0/security-guide/security/2-managing-users-and-their-permissions.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/2-managing-users-and-their-permissions.md rename to product/en/docs-mogdb/v6.0/security-guide/security/2-managing-users-and-their-permissions.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/3-configuring-database-audit.md b/product/en/docs-mogdb/v6.0/security-guide/security/3-configuring-database-audit.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/3-configuring-database-audit.md rename to product/en/docs-mogdb/v6.0/security-guide/security/3-configuring-database-audit.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/4-setting-encrypted-equality-query.md b/product/en/docs-mogdb/v6.0/security-guide/security/4-setting-encrypted-equality-query.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/4-setting-encrypted-equality-query.md rename to product/en/docs-mogdb/v6.0/security-guide/security/4-setting-encrypted-equality-query.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/5-setting-a-ledger-database.md b/product/en/docs-mogdb/v6.0/security-guide/security/5-setting-a-ledger-database.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/5-setting-a-ledger-database.md rename to product/en/docs-mogdb/v6.0/security-guide/security/5-setting-a-ledger-database.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/6-transparent-data-encryption.md b/product/en/docs-mogdb/v6.0/security-guide/security/6-transparent-data-encryption.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/6-transparent-data-encryption.md rename to product/en/docs-mogdb/v6.0/security-guide/security/6-transparent-data-encryption.md diff --git a/product/en/docs-mogdb/v5.1/security-guide/security/database-security-management.md b/product/en/docs-mogdb/v6.0/security-guide/security/database-security-management.md similarity index 100% rename from product/en/docs-mogdb/v5.1/security-guide/security/database-security-management.md rename to product/en/docs-mogdb/v6.0/security-guide/security/database-security-management.md diff --git a/product/en/docs-mogdb/v5.1/source-code-parsing.md b/product/en/docs-mogdb/v6.0/source-code-parsing.md similarity index 100% rename from product/en/docs-mogdb/v5.1/source-code-parsing.md rename to product/en/docs-mogdb/v6.0/source-code-parsing.md diff --git a/product/en/docs-mogdb/v5.1/toc.md b/product/en/docs-mogdb/v6.0/toc.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc.md rename to product/en/docs-mogdb/v6.0/toc.md index 30c32ca6..63af37e1 100644 --- a/product/en/docs-mogdb/v5.1/toc.md +++ b/product/en/docs-mogdb/v6.0/toc.md @@ -1,6 +1,7 @@ -# MogDB Documentation 5.1 + +# MogDB Documentation 6.0 ## Documentation List @@ -8,9 +9,6 @@ + [MogDB Introduction](/overview.md) + [Comparison Between MogDB and openGauss](/about-mogdb/MogDB-compared-to-openGauss.md) + [MogDB Release Notes](/about-mogdb/mogdb-new-feature/release-note.md) - + [MogDB 5.0.2](/about-mogdb/mogdb-new-feature/5.0.2.md) - + [MogDB 5.0.1](/about-mogdb/mogdb-new-feature/5.0.1.md) - + [MogDB 5.0.0](/about-mogdb/mogdb-new-feature/5.0.0.md) + [Open Source Components](/about-mogdb/open-source-components/open-source-components.md) + [Docker-based MogDB](/about-mogdb/open-source-components/2-docker-based-mogdb.md) + [compat-tools](/about-mogdb/open-source-components/compat-tools.md) diff --git a/product/en/docs-mogdb/v5.1/toc_about.md b/product/en/docs-mogdb/v6.0/toc_about.md similarity index 79% rename from product/en/docs-mogdb/v5.1/toc_about.md rename to product/en/docs-mogdb/v6.0/toc_about.md index 31fefd09..1b8ddcda 100644 --- a/product/en/docs-mogdb/v5.1/toc_about.md +++ b/product/en/docs-mogdb/v6.0/toc_about.md @@ -1,15 +1,13 @@ -# MogDB Documentation 5.1 + +# MogDB Documentation 6.0 ## About MogDB + [MogDB Introduction](/overview.md) + [Comparison Between MogDB and openGauss](/about-mogdb/MogDB-compared-to-openGauss.md) + [MogDB Release Notes](/about-mogdb/mogdb-new-feature/release-note.md) - + [MogDB 5.0.2](/about-mogdb/mogdb-new-feature/5.0.2.md) - + [MogDB 5.0.1](/about-mogdb/mogdb-new-feature/5.0.1.md) - + [MogDB 5.0.0](/about-mogdb/mogdb-new-feature/5.0.0.md) + Open Source Components + [Docker-based MogDB](/about-mogdb/open-source-components/2-docker-based-mogdb.md) + [compat-tools](/about-mogdb/open-source-components/compat-tools.md) diff --git a/product/en/docs-mogdb/v5.1/toc_ai-features.md b/product/en/docs-mogdb/v6.0/toc_ai-features.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_ai-features.md rename to product/en/docs-mogdb/v6.0/toc_ai-features.md index b6adf2cd..514f49d1 100644 --- a/product/en/docs-mogdb/v5.1/toc_ai-features.md +++ b/product/en/docs-mogdb/v6.0/toc_ai-features.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## AI Features Guide diff --git a/product/en/docs-mogdb/v5.1/toc_characteristic_description.md b/product/en/docs-mogdb/v6.0/toc_characteristic_description.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_characteristic_description.md rename to product/en/docs-mogdb/v6.0/toc_characteristic_description.md index 52864c02..5fefac7a 100644 --- a/product/en/docs-mogdb/v5.1/toc_characteristic_description.md +++ b/product/en/docs-mogdb/v6.0/toc_characteristic_description.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Characteristic Description diff --git a/product/en/docs-mogdb/v5.1/toc_common-faults-and-identification.md b/product/en/docs-mogdb/v6.0/toc_common-faults-and-identification.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_common-faults-and-identification.md rename to product/en/docs-mogdb/v6.0/toc_common-faults-and-identification.md index 5eeb029b..481e696d 100644 --- a/product/en/docs-mogdb/v5.1/toc_common-faults-and-identification.md +++ b/product/en/docs-mogdb/v6.0/toc_common-faults-and-identification.md @@ -1,6 +1,6 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Common Faults and Identification diff --git a/product/en/docs-mogdb/v5.1/toc_communication-matrix.md b/product/en/docs-mogdb/v6.0/toc_communication-matrix.md similarity index 74% rename from product/en/docs-mogdb/v5.1/toc_communication-matrix.md rename to product/en/docs-mogdb/v6.0/toc_communication-matrix.md index 53364b14..f4e4b2dc 100644 --- a/product/en/docs-mogdb/v5.1/toc_communication-matrix.md +++ b/product/en/docs-mogdb/v6.0/toc_communication-matrix.md @@ -1,4 +1,4 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Communication Matrix diff --git a/product/en/docs-mogdb/v5.1/toc_datatypes-and-sql.md b/product/en/docs-mogdb/v6.0/toc_datatypes-and-sql.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_datatypes-and-sql.md rename to product/en/docs-mogdb/v6.0/toc_datatypes-and-sql.md index 3bc5467f..056cdd41 100644 --- a/product/en/docs-mogdb/v5.1/toc_datatypes-and-sql.md +++ b/product/en/docs-mogdb/v6.0/toc_datatypes-and-sql.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Data Types and SQL diff --git a/product/en/docs-mogdb/v5.1/toc_dev.md b/product/en/docs-mogdb/v6.0/toc_dev.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_dev.md rename to product/en/docs-mogdb/v6.0/toc_dev.md index 2396b0af..b43d3b46 100644 --- a/product/en/docs-mogdb/v5.1/toc_dev.md +++ b/product/en/docs-mogdb/v6.0/toc_dev.md @@ -1,6 +1,6 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Developer Guide diff --git a/product/en/docs-mogdb/v5.1/toc_error.md b/product/en/docs-mogdb/v6.0/toc_error.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_error.md rename to product/en/docs-mogdb/v6.0/toc_error.md index 56dcc1e6..037f6e24 100644 --- a/product/en/docs-mogdb/v5.1/toc_error.md +++ b/product/en/docs-mogdb/v6.0/toc_error.md @@ -1,6 +1,6 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Error Messages diff --git a/product/en/docs-mogdb/v5.1/toc_extension-referecne.md b/product/en/docs-mogdb/v6.0/toc_extension-referecne.md similarity index 98% rename from product/en/docs-mogdb/v5.1/toc_extension-referecne.md rename to product/en/docs-mogdb/v6.0/toc_extension-referecne.md index 5106b64b..d06594cc 100644 --- a/product/en/docs-mogdb/v5.1/toc_extension-referecne.md +++ b/product/en/docs-mogdb/v6.0/toc_extension-referecne.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Extension Reference diff --git a/product/en/docs-mogdb/v5.1/toc_faqs.md b/product/en/docs-mogdb/v6.0/toc_faqs.md similarity index 94% rename from product/en/docs-mogdb/v5.1/toc_faqs.md rename to product/en/docs-mogdb/v6.0/toc_faqs.md index fe01212f..d988e52b 100644 --- a/product/en/docs-mogdb/v5.1/toc_faqs.md +++ b/product/en/docs-mogdb/v6.0/toc_faqs.md @@ -1,6 +1,6 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## FAQs diff --git a/product/en/docs-mogdb/v5.1/toc_glossary.md b/product/en/docs-mogdb/v6.0/toc_glossary.md similarity index 61% rename from product/en/docs-mogdb/v5.1/toc_glossary.md rename to product/en/docs-mogdb/v6.0/toc_glossary.md index bd18ec36..4c344595 100644 --- a/product/en/docs-mogdb/v5.1/toc_glossary.md +++ b/product/en/docs-mogdb/v6.0/toc_glossary.md @@ -1,4 +1,4 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Glossary diff --git a/product/en/docs-mogdb/v5.1/toc_high_available.md b/product/en/docs-mogdb/v6.0/toc_high_available.md similarity index 97% rename from product/en/docs-mogdb/v5.1/toc_high_available.md rename to product/en/docs-mogdb/v6.0/toc_high_available.md index 2dd6f904..24bc8c32 100644 --- a/product/en/docs-mogdb/v5.1/toc_high_available.md +++ b/product/en/docs-mogdb/v6.0/toc_high_available.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## High Available Guide diff --git a/product/en/docs-mogdb/v5.1/toc_install.md b/product/en/docs-mogdb/v6.0/toc_install.md similarity index 96% rename from product/en/docs-mogdb/v5.1/toc_install.md rename to product/en/docs-mogdb/v6.0/toc_install.md index e7b81432..01f00611 100644 --- a/product/en/docs-mogdb/v5.1/toc_install.md +++ b/product/en/docs-mogdb/v6.0/toc_install.md @@ -1,6 +1,6 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Installation Guide diff --git a/product/en/docs-mogdb/v5.1/toc_manage.md b/product/en/docs-mogdb/v6.0/toc_manage.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_manage.md rename to product/en/docs-mogdb/v6.0/toc_manage.md index b09245fd..1c0ce899 100644 --- a/product/en/docs-mogdb/v5.1/toc_manage.md +++ b/product/en/docs-mogdb/v6.0/toc_manage.md @@ -1,6 +1,6 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Administrator Guide diff --git a/product/en/docs-mogdb/v5.1/toc_parameters-and-tools.md b/product/en/docs-mogdb/v6.0/toc_parameters-and-tools.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_parameters-and-tools.md rename to product/en/docs-mogdb/v6.0/toc_parameters-and-tools.md index 977604a8..9410f3d7 100644 --- a/product/en/docs-mogdb/v5.1/toc_parameters-and-tools.md +++ b/product/en/docs-mogdb/v6.0/toc_parameters-and-tools.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Parameters and Tools diff --git a/product/en/docs-mogdb/v5.1/toc_performance.md b/product/en/docs-mogdb/v6.0/toc_performance.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_performance.md rename to product/en/docs-mogdb/v6.0/toc_performance.md index a689f8fa..f1b70a71 100644 --- a/product/en/docs-mogdb/v5.1/toc_performance.md +++ b/product/en/docs-mogdb/v6.0/toc_performance.md @@ -1,6 +1,7 @@ -# MogDB Documentation 5.1 + +# MogDB Documentation 6.0 ## Performance Tuning diff --git a/product/en/docs-mogdb/v5.1/toc_quickstart.md b/product/en/docs-mogdb/v6.0/toc_quickstart.md similarity index 98% rename from product/en/docs-mogdb/v5.1/toc_quickstart.md rename to product/en/docs-mogdb/v6.0/toc_quickstart.md index e0f32b18..9b5ae6d3 100644 --- a/product/en/docs-mogdb/v5.1/toc_quickstart.md +++ b/product/en/docs-mogdb/v6.0/toc_quickstart.md @@ -1,6 +1,7 @@ -# MogDB Documentation 5.1 + +# MogDB Documentation 6.0 ## Quick Start diff --git a/product/en/docs-mogdb/v5.1/toc_secure.md b/product/en/docs-mogdb/v6.0/toc_secure.md similarity index 96% rename from product/en/docs-mogdb/v5.1/toc_secure.md rename to product/en/docs-mogdb/v6.0/toc_secure.md index 4974b2fb..745943c5 100644 --- a/product/en/docs-mogdb/v5.1/toc_secure.md +++ b/product/en/docs-mogdb/v6.0/toc_secure.md @@ -1,6 +1,7 @@ -# MogDB Documentation 5.1 + +# MogDB Documentation 6.0 ## Security Guide diff --git a/product/en/docs-mogdb/v5.1/toc_system-catalogs-and-functions.md b/product/en/docs-mogdb/v6.0/toc_system-catalogs-and-functions.md similarity index 99% rename from product/en/docs-mogdb/v5.1/toc_system-catalogs-and-functions.md rename to product/en/docs-mogdb/v6.0/toc_system-catalogs-and-functions.md index 060f139f..76de529c 100644 --- a/product/en/docs-mogdb/v5.1/toc_system-catalogs-and-functions.md +++ b/product/en/docs-mogdb/v6.0/toc_system-catalogs-and-functions.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## System Catalogs and Functions diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md b/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md deleted file mode 100644 index 9459e7ac..00000000 --- a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.0.md +++ /dev/null @@ -1,223 +0,0 @@ ---- -title: MogDB 5.0.0 -summary: MogDB 5.0.0 -author: Guo Huan -date: 2023-05-25 ---- - -# MogDB 5.0.0 - -## 1. 版本说明 - -MogDB 5.0.0版本于2023年07月14日正式发布。作为LTS版本,基于3.0/3.1版本进一步增强,并引入了openGauss 5.0.0版本的新增特性。 - -## 2. 新增特性 - -### 2.1 集成openGauss 5.0.0版本新特性 - -- 高性能:基础算子性能提升 -- 高安全:用户级别审计 -- 高可用:CM支持VIP管理 -- 高可用:CM支持两节点部署 -- 高可用:CM磁盘只读检测能力增强 -- 高可用:CM易用性提升 -- 高智能:异常检测支持自配置 -- 企业级特性:事件触发器 -- 应用开发接口:JDBC能力增强 -- 兼容性:兼容MySQL包括数据类型、操作符、系统函数、DDL、DML、DCL、PL/SQL等在内的绝大部分常用语法,实现应用近似零修改迁移 - -### 2.2 并行索引扫描 - -在使用索引进行查询(IndexScan、IndexOnlyScan)的场景,使用多线程并行对索引进行扫描,典型场景下端到端性能可提升10%以上。 - -- 支持普通表及分区表 -- 根据代价评估自动判断是否启用并行索引扫描机制 - -- 优化Stream算子,提高并行扫描线程间数据合并处理速率 - -**相关页面**:[并行索引扫描](../../characteristic-description/high-performance/parallel-index-scan.md) - -### 2.3 并行查询性能优化 - -对以下算子进行并行查询改造,更好地利用多核处理器和内存资源,提升算子查询性能: - -- 并行 sort merge join:当系统配置允许并行执行,并且执行计划适合并行执行时,可以使用多个线程同时扫描和匹配关联列,从而加速连接操作的执行速度; - -- 自适应两阶段 hash agg.:当执行聚合查询时,根据实际数据和查询条件的特点,在适合自适应两阶段哈希聚合的场景下,可以避免不必要的内存和磁盘开销,提升查询性能约6%至17%; - -- 运行时结果缓存:在部分查询中,如果查询结果可以被重用,MogDB会将结果缓存在内存中,以便后续查询可以重复使用,这样可以减少重复计算和磁盘访问的开销,提高查询性能; - -**相关页面**:[并行查询优化](../../characteristic-description/high-performance/parallel-query-optimization.md),[自适应两阶段哈希聚合](../../characteristic-description/high-performance/adaptive-two-phase-aggregation.md) - -### 2.4 排序算子性能优化 - -针对不同场景的排序算子进行针对性优化,降低资源消耗,提升排序算子性能: - -- 快速排序:对于定长字段类型的排序,通过消除大量比较函数调用开销,通常可以获得2%~5%的性能提升; - -- 增量排序:对指定字段组合进行排序时,当其中前缀字段组合可以利用上索引或中间查询结果的有序性时,将全量排序优化为增量排序,从而减少排序需要处理的数据量,进而提升性能,配合limit场景使用时,可以带来10~100倍的性能提升效果; - -**相关页面**:[排序算子优化](../../characteristic-description/high-performance/ordering-operator-optimization.md) - -### 2.5 SQL Bypass增强 - -SQL Bypass是针对简单SQL的查询优化技术,本版本扩展了SQL Bypass的适用场景: - -- 带有非索引列作为过滤条件的查询语句,通过使能SQL Bypass功能,大数据量下查询性能可提升10%以上,PBE场景下性能提升效果更加明显。 - -**相关页面**:[SQL Bypass](../../characteristic-description/high-performance/sql-bypass.md) - -### 2.6 行存表行级压缩 - -在数据写入aStore行存表时,后台对数据进行压缩,典型场景下可以获得50%的存储空间节省,同时通过后台流控技术减少对系统资源的占用,性能几乎无损。 - -- 以记录行为单位进行压缩解压,对于OLTP点查场景,只需要解压一行数据,没有解压放大,能够获得更好的查询性能; - -- 内存中的页面为压缩状态,在相同Shared Buffer大小下可以提供更高的内存命中率,进而提升查询性能; - -- 在MVCC(多版本并发控制)查找历史版本链时,无需解压中间版本,只需要解压目标版本的数据行。这样可以大大减少解压的工作量,提高查询性能; - -- 采用多数据页共享字典的方案,相比单表训练字典的方案,压缩字典可以随数据的变更自动演进,没有字典逐渐失效的问题。 - -**相关页面**:[Astore行级压缩](../../characteristic-description/high-performance/astore-row-level-compression.md) - -### 2.7 非唯一索引压缩 - -当数据表中创建有B+Tree类型的非唯一索引时,索引中存在多个重复的key/value键值对,通过将多个相同key的key/value键值对合并压缩成一个key->value list的方式,能够获得50%的索引空间节省,同时还能提升索引页面的内存命中率,进而提升index scan的性能。 - -**相关页面**:[BTree索引压缩](../../characteristic-description/high-performance/btree-index-compression.md) - -### 2.8 gstrace增强 - -gstrace是用于跟踪内核代码执行路径、记录内核数据结构和分析代码性能的工具,可以帮助开发人员深入了解内核代码的执行情况,提高问题定位效率,本版本在以下几个方面进行增强: - -- 支持在生产环境下进行追踪观测:gstrace可以在不停库的情况下工作,允许用户指定一个或多个模块和函数进行追踪观测,这样可以避免对系统的正常运行造成干扰,并保证生产环境的稳定性; - -- 导出SQL执行细节:gstrace可以记录SQL执行的详细信息,包括查询语句、执行计划、运行时间等等,这些信息可以用于后续的故障分析,帮助快速定位和解决问题,从而提高诊断效率; - -- 支持追踪分析的模块:目前gstrace主要支持追踪walwriter模块、pagewriter模块和checkpointer模块,这些模块在数据库系统中具有重要的作用,通过追踪它们的执行路径和记录相关的数据结构,可以深入了解系统的运行情况,从而进行性能优化和故障排查; - -- 轻量级锁的导出分析:gstrace还支持对轻量级锁进行导出分析,轻量级锁是一种用于提高多线程并发访问效率的锁机制,在数据库系统中广泛应用,通过对轻量级锁的追踪和分析,可以帮助发现和解决潜在的线程安全问题; - -- 追踪会话和线程:gstrace支持追踪一个或多个会话和线程,这样可以精确地定位到特定的会话或线程,进行详细的分析和调试; - -- DCF模块功能增强:MogDB 5.0 版本增加了针对DCF模块打开trace的功能。通过指定gstrace追踪DCF模块可以获取DCF相关的函数调用信息及关键数据结构的具体信息。从而帮助开发调试人员快速定位问题,提高诊断效率。 - -**相关页面**:[gstrace](../../reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md),[轻量级锁导出与分析](../../characteristic-description/maintainability/light-lock-export-and-analysis.md),[DCF模块追踪](../../characteristic-description/maintainability/dcf-module-tracing.md),[SQL trace观测功能](../../characteristic-description/high-performance/tracing-SQL-function.md),[后台关键线程trace观测增强](../../characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md) - -### 2.9 CM(Cluster Manager)集群支持两节点部署 - -CM集群支持两节点部署,通过引入第三方网关作为仲裁节点实现多数派仲裁机制,将集群起配成本从3节点降低为2节点: - -- 当集群网络正常时,CM主备实例中的任意一方发起选举时,只要与第三方网关IP通信成功,就会增加自身的票数,以此实现多数派决策; -- 当集群网络状态异常时,CM主备实例中的任意一方发现和对端CM实例通信异常,但与第三方网关IP通信正常,就会认为对端可能存在故障。如果是CM主节点则会执行降备流程,如果是CM备节点则会根据配置项来判断是否执行升主实现自动故障切换; -- 提供可选配置来决定网络分区场景下备机是否升主,避免脑裂问题的发生。 - -**相关页面**:[CM集群支持两节点部署](../../characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md) - -### 2.10 Oracle兼容性增强 - -【1】[支持PROCEDURE/FUNCTION/PACKAGE的end后的name和oracle保持一致](../../characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md) - -【2】[支持PLPGSQL subtype](../../characteristic-description/compatibility/support-plpgsql-subtype.md) - -【3】[视图增加%rowtype属性](../../characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md) - -【4】[支持Oracle DBLink兼容](../../characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md) - -【5】[支持包内常量作为函数或者过程入参的默认值](../../characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md) - -【6】[支持current_date,current_time等保留关键字可以作为表的字段名](../../characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md) - -【7】[MogDB支持Insert All特性](../../characteristic-description/compatibility/mogdb-supports-insert-all.md) - -【8】[For Update支持外连接](../../characteristic-description/compatibility/for-update-supports-outer-join.md) - -【9】[支持dbms_utility.format_error_backtrace](../../characteristic-description/compatibility/format-error-backtrace.md) - -【10】[支持在数组extend的参数中传入数组的count属性](../../characteristic-description/compatibility/support-passing-the-count-attribute.md) - -【11】[支持Oracle中的自定义type数组](../../characteristic-description/compatibility/custom-type-array.md) - -【12】[支持Merge into命中索引时增加使用bypass方法](../../characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md) - -【13】[支持where current of的写法](../../characteristic-description/compatibility/support-where-current-of.md) - -【14】[Agg函数支持Keep子句](../../characteristic-description/compatibility/aggregate-functions-support-keep-clause.md) - -【15】[Agg支持场景扩展](../../characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md) - -【16】[支持两个date类型的数据相减,返回numeric类型](../../characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md) - -【17】[支持表函数table()](../../characteristic-description/compatibility/support-table-function.md) - -【18】[支持创建 package/function/procedure时,去除type类型转换提示](../../characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md) - -【19】[支持q quote转义字符](../../characteristic-description/compatibility/support-q-quote-escape-character.md) - -【20】[支持无参数function的同义词调用可以不加括号](../../characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md) - -【21】[支持增加存储过程及函数参数的nocopy属性](../../characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md) - -【22】[Agg(distinct)性能优化](../../characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md) - -## 3. 修复缺陷 - -### 3.1 集成openGauss 5.0.0版本修复缺陷 - -- I6NVAB 3.0.3版本灰度升级到5.0.0版本后回滚和强制回滚均报错 - -- I6NK8U 修改发布/订阅名为已存在的名称,报错ERROR: unsupported object class xxx - -- I6N2QD similar to在使用escape时,逃逸字符为汉字,报错;like逃逸字符为汉字,成功 - -- I6MOCS 兼容性b库下,对于二级分区表分区键为year函数时,在进行add partition操作后,使用pg_get_tabledef会报未知错误 - -- I6LMTU B兼容模式下,不支持反引号包裹对象 - -- I6KO5S 【资源池化】共享存储升级,执行升级命令,升级失败 - -- I6KRZ6 【资源池化】dsscmd du -p +data -f a命令实际上只计算了目录,没有计算文件 - -- I6IZH9 【资源池化】reform失败没有进入下一轮,集群卡主 - -- I6O0K6 2.0.1、2.0.0和2.0.5版本不带cm工具灰度升级到5.0.0带cm工具后提交失败 - -- I61OX7 cm_agent参数log_dir值改为空无合理报错,且重启cm_agent生效后不再生成新的cm_agent日志 - -- I6K2BZ 变色龙迁移由于双引号问题导致部分迁移失败 - -- I6KIWQ Debezium+kafka增量迁移,timestamp等时间戳类型,迁移后时间有误 - -- I6I640 使用数据校验工具校验15W张表的数据时,校验进程一直是卡住状态 - -### 3.2 MogDB 5.0.0版本修复缺陷 - -- 修复同样的sql中对同一张表进行采样,指定相同的随机数种子seed,返回结果不同的问题 - -- 修复xlogdump导出identity full的delete event存在的问题 - -- dolphin在开启线程池情况下,概率性出现mutex死锁问题 - -- 备机扩展段页式空间时异常退出 - -- 【TPCH】ERROR: Stream plan check failed - -- TPCH 列存下Q20选择错误的查询计划导致查询慢 - -- 1000个warehouse高并发tpcc执行半小时后switchover耗时过长 - -- gpi_interval测试样例在mogdb_function上偶发性报错 - -## 4. 兼容性 - -5.0版本支持以下操作系统及CPU架构组合: - -| 操作系统 | CPU架构 | 备注 | -| --------------------- | -------------------------------------------- | ------------------------------------------------------------ | -| CentOS 7.x | X86_64 (Intel,AMD,海光,兆芯) | | -| Redhat 7.x | X86_64 (Intel,AMD,海光,兆芯) | | -| openEuler 20.03LTS | ARM(鲲鹏)、X86_64 (Intel,AMD,海光,兆芯) | 当前版本暂未通过兼容性验证,5.0.1支持 | -| 银河麒麟V10 | ARM(鲲鹏)、X86_64 (Intel,AMD,海光,兆芯) | OM组件暂不兼容Kylin V10 sp2升级补丁中的openssh-8.2p1-9.p06以上版本(包括p06、p07、p08、p09) | -| 统信UOS V20-D / V20-E | ARM(鲲鹏)、X86_64 (Intel,AMD,海光,兆芯) | 当前版本暂未通过兼容性验证,5.0.1支持 | -| 统信UOS V20-A | X86_64 (Intel,AMD,海光,兆芯) | 当前版本暂未通过兼容性验证,5.0.1支持 | \ No newline at end of file diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md b/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md deleted file mode 100644 index be5685ac..00000000 --- a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.1.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: MogDB 5.0.1 -summary: MogDB 5.0.1 -author: Guo Huan -date: 2023-05-25 ---- - -# MogDB 5.0.1 - -## 1. 版本说明 - -MogDB 5.0.1是MogDB 5.0.0的补丁版本,于2023年8月15日发布,其在MogDB 5.0.0的基础上修复了部分缺陷,内容如下。 - -## 2. 新增特性 - -支持视图与其依赖项解耦,在其依赖项发生变更时视图可以通过触发条件自动编译。该特性通过新增的SIGHUP级别GUC参数[view_independent](../../reference-guide/guc-parameters/miscellaneous-parameters.md#view_independent)控制启用,默认关闭。参数取值为true时,支持单独更新视图依赖项;取值为false时,行为保持前向兼容,即修改视图依赖项时报错。 - -当此特性启用时: - -1. 视图的依赖项可以单独进行修改,比如修改表、修改视图、修改函数等,无需强制删除视图; -2. 支持查询视图时自动编译或者手动通过SQL语句(ALTER VIEW view_name COMPILE)编译视图。 - -## 3. 修复缺陷 - -1. 修复了在B兼容类型的数据库模式下,首次使用insert set语句插入数据,如果value值中存在反引号,插入会失败的问题。 -2. 修复了多次执行gs_restore恢复数据库,导致重复出现package的问题。 -3. 修复了pg_probackup执行过程中出现错误的pid报错日志的问题。 -4. 修复了使用ptk进行扩容时,生成的新节点node_name不正确的问题。 -5. 修复了用户自定义函数通过out和return返回numeric类型时,精度不一致的问题。 -6. 修复了使用plancache(prepare,execute语句),且分区裁剪和DDL操作并发,低概率导致错误的问题。 -7. 修复了whale插件中随机函数无随机性的问题。 -8. 修复了子查询中有order by的场景导致结果错误的问题。 -9. 修复了PG兼容模式下数据库初始化报错的问题。 -10. 修复了current_date函数返回结果在通过prepare语句缓存后结果不会更新的问题。 -11. 修复了having子句放在group by子句前面发生报错的问题。 -12. 修复了DBE_PLDEBUGGER中保存的funcoid错误的问题。 -13. 修复了某些array系列函数调用会发生错误的问题。 -14. 修复了proc_outparam_override打开后,函数参数中带有多个refcursor类型的out参数,call方式调用会发生错误的问题。 -15. 修复了日志回放时备机低概率发生宕机的问题。 -16. 修复了存储过程中return_number与返回结果不一致的问题。 -17. 修复了mask带转义字符密码时会发生数组越界问题的问题。 - -## 4. 兼容性 - -5.0.1版本支持以下操作系统及CPU架构组合: - -| 操作系统 | CPU架构 | 备注 | -| --------------------- | -------------------------------------------- | ------------------------------------------------------------ | -| CentOS 7.x | X86_64 (Intel,AMD,海光,兆芯) | | -| Redhat 7.x | X86_64 (Intel,AMD,海光,兆芯) | | -| openEuler 20.03LTS | ARM(鲲鹏)、X86_64 (Intel,AMD,海光,兆芯) | | -| 银河麒麟V10 | ARM(鲲鹏)、X86_64 (Intel,AMD,海光,兆芯) | OM组件暂不兼容Kylin V10 sp2升级补丁中的openssh-8.2p1-9.p06以上版本(包括p06、p07、p08、p09) | -| 统信UOS V20-D / V20-E | ARM(鲲鹏)、X86_64 (Intel,AMD,海光,兆芯) | | -| 统信UOS V20-A | X86_64 (Intel,AMD,海光,兆芯) | | \ No newline at end of file diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md b/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md deleted file mode 100644 index 66b3bbca..00000000 --- a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/5.0.2.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: MogDB 5.0.2 -summary: MogDB 5.0.2 -author: Guo Huan -date: 2023-09-27 ---- - -# MogDB 5.0.2 - -## 1. 版本说明 - -MogDB 5.0.2是MogDB 5.0.0的补丁版本,于2023-09-30发布,其在MogDB 5.0.1的基础上新增部分特性,并修复了部分缺陷,内容如下。 - -
- -## 2. 新增特性 - -1. [备机表级并行回放性能提升1倍](../../characteristic-description/high-performance/enhancement-of-wal-redo-performance.md) -2. 支持JAVA代码中PL/SQL匿名块绑定变量 -3. [增加了视图创建时原始语句的查询功能](../../characteristic-description/high-availability/ddl-query-of-view.md) -4. [增加导入超过数据库编码字符集范围的数据时报错提示](../../characteristic-description/maintainability/error-when-writing-illegal-characters.md) -5. [新增pagehack和pageinspect工具](../../characteristic-description/maintainability/pageinspect-pagehack.md) - -
- -## 3. 修复缺陷 - -1. 修复保存的视图定义错误导致无法直接通过定义创建的问题 -2. 修复在创建索引的时候错误进入安全模式导致无法使用临时表的问题 -3. 修复触发器产生残留自治事务后引发宕机的问题 -4. 修复pg_get_function_result和pg_get_function_arguments函数对于复合类型的集合类型查询结果不正确的问题 -5. 修复网卡down掉后进行failover耗时较长的问题 -6. 修复hashjoin中左右表选择错误的问题 -7. 修复nestloop中代价计算错误导致选择较差查询计划的问题 -8. 修复在存储过程中copy语句无法正确显示行数的问题 -9. 修复通过odbc调用merge into返回的影响行数错误问题 -10. 修复级联删除包的时候,notice中包对象不显示包名的问题 -11. 修复dolphin中date_format函数无法获得星期值的问题 -12. 修复dolphin中to_days函数和mysql表现不一致的问题 -13. 修复dolphin中find_in_set函数执行结果和mysql不一致的问题 -14. 修复在insert all中包含hint会报错的问题 -15. 修复当索引条件为in子句且元素过长导致的生成查询计划较慢的问题 -16. 修复打开enable_sql_bypass参数导致的内存占用过高的问题 -17. 修复在package内,如果constant常量作为重载函数的入参会报错的问题 -18. 修复在3.0中gs_dump的gs_is_recycle_obj函数未导出的问题 -19. 修复connectby功能中prior后不能跟表达式的问题 -20. 修复系统函数getppid报错导致的物理备份失败的问题 - -
- -## 4. 行为变更 - -| 行为 | 变更前 | 变更后 | -| ------------------------ | ------------------------------------------ | ------------------------------------------------------------ | -| dblink插件安装环境依赖包 | 无需额外操作,安装dblink插件后可直接创建。 | 安装dblink插件后还需安装libtool软件包才可创建。安装指令为`sudo yum install -y libtool-ltdl-devel` | diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md b/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md deleted file mode 100644 index 39eccad7..00000000 --- a/product/zh/docs-mogdb/v5.1/about-mogdb/mogdb-new-feature/release-note.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: 发布说明 -summary: 发布说明 -author: Guo Huan -date: 2022-09-27 ---- - -# 发布说明 - -| 版本 | 发布日期 | 概述 | -| ------------------- | -------- | ------------------------------------------------------------ | -| [5.0.2](./5.0.2.md) | 09/30 | MogDB 5.0.2版本于2023年09月30日正式发布,其在MogDB 5.0.2的基础上新增部分特性,并修复了部分缺陷。 | -| [5.0.1](./5.0.1.md) | 08/15 | MogDB 5.0.1版本于2023年08月15日正式发布,在MogDB 5.0.0的基础上修复了部分缺陷,并新增视图与其依赖项解耦的特性。 | -| [5.0.0](./5.0.0.md) | 07/14 | MogDB 5.0.0版本于2023年07月14日正式发布。作为LTS版本,基于3.0/3.1版本进一步增强,并引入了openGauss 5.0.0版本的新增特性。 | \ No newline at end of file diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai-feature.md b/product/zh/docs-mogdb/v6.0/AI-features/ai-feature.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai-feature.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai-feature.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/abo-optimizer.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/abo-optimizer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/abo-optimizer.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/abo-optimizer.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-best-practices.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-prerequisites.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/adaptive-plan-selection-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/adaptive-plan-selection/ai4db-adaptive-plan-selection.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/ai4db-intelligent-cardinality-estimation.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-best-practices.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-prerequisites.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/abo-optimizer/intelligent-cardinality-estimation/intelligent-cardinality-estimation-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/ai-sub-functions-of-the-dbmind.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-multi-metric-correlation-analysis.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-multi-metric-correlation-analysis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-multi-metric-correlation-analysis.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-multi-metric-correlation-analysis.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-analysis/anomaly-analysis.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/anomaly-detection/anomaly-detection.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-environment-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/forcast-trend-prediction/forcast-trend-prediction.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/index-advisor-index-recommendation.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/single-query-index-recommendation.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/virtual-index.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/index-advisor-index-recommendation/workload-level-index-recommendation.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-environment-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/slow-query-diagnosis-root-cause-analysis-for-slow-sql-statements/slow-sql-statements.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sql-rewriter-sql-statement-rewriting/sql-rewriter-sql-statement-rewriting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/sqldiag-slow-sql-discovery/sqldiag-slow-sql-discovery.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-examples.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-parameter-optimization-and-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-preparations.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai-sub-functions-of-the-dbmind/x-tuner-parameter-optimization-and-diagnosis/x-tuner-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai4db-autonomous-database-o&m.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai4db-autonomous-database-o&m.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/ai4db-autonomous-database-o&m.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/ai4db-autonomous-database-o&m.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/components-that-support-dbmind.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-environment-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-overview.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-troubleshooting.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter-usage-guide.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/components-that-support-dbmind/prometheus-exporter/prometheus-exporter.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-deployment.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-deployment.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/component.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/component.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/component.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/component.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/dbmind-mode.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/dbmind-mode.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/dbmind-mode.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/dbmind-mode.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/service.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/service.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/service.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/service.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/set.md b/product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/set.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/ai4db/dbmind-mode/set.md rename to product/zh/docs-mogdb/v6.0/AI-features/ai4db/dbmind-mode/set.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/db4ai/db4ai.md b/product/zh/docs-mogdb/v6.0/AI-features/db4ai/db4ai.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/db4ai/db4ai.md rename to product/zh/docs-mogdb/v6.0/AI-features/db4ai/db4ai.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md b/product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md rename to product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-query-for-model-training-and-prediction.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md b/product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md rename to product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/db4ai-snapshots-for-data-version-management.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/full-process-ai.md b/product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/full-process-ai.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/full-process-ai.md rename to product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/full-process-ai.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md b/product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md rename to product/zh/docs-mogdb/v6.0/AI-features/db4ai/full-process-ai/plpython-fenced-mode.md diff --git a/product/zh/docs-mogdb/v5.1/AI-features/db4ai/native-db4ai-engine.md b/product/zh/docs-mogdb/v6.0/AI-features/db4ai/native-db4ai-engine.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/AI-features/db4ai/native-db4ai-engine.md rename to product/zh/docs-mogdb/v6.0/AI-features/db4ai/native-db4ai-engine.md diff --git a/product/zh/docs-mogdb/v5.1/_index.md b/product/zh/docs-mogdb/v6.0/_index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/_index.md rename to product/zh/docs-mogdb/v6.0/_index.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/MogDB-compared-to-openGauss.md b/product/zh/docs-mogdb/v6.0/about-mogdb/MogDB-compared-to-openGauss.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/MogDB-compared-to-openGauss.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/MogDB-compared-to-openGauss.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/about-mogdb.md b/product/zh/docs-mogdb/v6.0/about-mogdb/about-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/about-mogdb.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/about-mogdb.md diff --git a/product/zh/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md b/product/zh/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md new file mode 100644 index 00000000..4e7b17de --- /dev/null +++ b/product/zh/docs-mogdb/v6.0/about-mogdb/mogdb-new-feature/release-note.md @@ -0,0 +1,14 @@ +--- +title: 发布说明 +summary: 发布说明 +author: Guo Huan +date: 2022-09-27 +--- + +# 发布说明 + +| 版本 | 发布日期 | 概述 | +| ---- | -------- | ---- | +| | | | +| | | | +| | | | \ No newline at end of file diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/2-docker-based-mogdb.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/2-docker-based-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/2-docker-based-mogdb.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/2-docker-based-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/DBMS-RANDOM.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/DBMS-RANDOM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/DBMS-RANDOM.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/DBMS-RANDOM.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/compat-tools.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/compat-tools.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/compat-tools.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/compat-tools.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_filedump.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_filedump.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_filedump.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_filedump.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_xlogdump.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_xlogdump.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/mog_xlogdump.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/mog_xlogdump.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/mogdb-monitor.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/mogdb-monitor.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/mogdb-monitor.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/mogdb-monitor.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/open-source-components.md b/product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/open-source-components.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/open-source-components/open-source-components.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/open-source-components/open-source-components.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/terms-of-use.md b/product/zh/docs-mogdb/v6.0/about-mogdb/terms-of-use.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/terms-of-use.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/terms-of-use.md diff --git a/product/zh/docs-mogdb/v5.1/about-mogdb/usage-limitations.md b/product/zh/docs-mogdb/v6.0/about-mogdb/usage-limitations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/about-mogdb/usage-limitations.md rename to product/zh/docs-mogdb/v6.0/about-mogdb/usage-limitations.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/administrator-guide.md b/product/zh/docs-mogdb/v6.0/administrator-guide/administrator-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/administrator-guide.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/administrator-guide.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md b/product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration-overview.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration.md b/product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/backup-and-restoration.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/backup-and-restoration.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/flashback-restoration.md b/product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/flashback-restoration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/flashback-restoration.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/flashback-restoration.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md b/product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/logical-backup-and-restoration.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md b/product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/backup-and-restoration/physical-backup-and-restoration.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/column-store-tables-management.md b/product/zh/docs-mogdb/v6.0/administrator-guide/column-store-tables-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/column-store-tables-management.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/column-store-tables-management.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/common-primary-backup-deployment-scenarios.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/database-deployment-scenario.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/database-deployment-scenario.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/database-deployment-scenario.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/database-deployment-scenario.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-architecture.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-current-architectural-feature-constraints.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-developer-environment-deployment-guide.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-om-installation-deployment.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-om-installation-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-om-installation-deployment.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-om-installation-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-one-city-two-center-deployment.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-one-city-two-center-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-one-city-two-center-deployment.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/resource-pooling-architecture/resource-pooling-one-city-two-center-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md b/product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/database-deployment-scenario/two-city-three-dc-dr.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/1-using-gs_dump-and-gs_dumpall-to-export-data-overview.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/2-exporting-a-single-database.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/3-exporting-all-databases.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/4-data-export-by-a-user-without-required-permissions.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/exporting-data/exporting-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-and-exporting-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/1-import-modes.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/10-managing-concurrent-write-operations.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/2-running-the-INSERT-statement-to-insert-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/3-running-the-COPY-FROM-STDIN-statement-to-import-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/4-using-a-gsql-meta-command-to-import-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/5-using-gs_restore-to-import-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/6-updating-data-in-a-table.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/7-deep-copy.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/8-ANALYZE-table.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/9-doing-VACUUM-to-a-table.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md b/product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/importing-and-exporting-data/importing-data/importing-data.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/localization/character-set-support.md b/product/zh/docs-mogdb/v6.0/administrator-guide/localization/character-set-support.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/localization/character-set-support.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/localization/character-set-support.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/localization/collation-support.md b/product/zh/docs-mogdb/v6.0/administrator-guide/localization/collation-support.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/localization/collation-support.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/localization/collation-support.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/localization/locale-support.md b/product/zh/docs-mogdb/v6.0/administrator-guide/localization/locale-support.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/localization/locale-support.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/localization/locale-support.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/localization/localization.md b/product/zh/docs-mogdb/v6.0/administrator-guide/localization/localization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/localization/localization.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/localization/localization.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/1-mot-introduction.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/2-mot-features-and-benefits.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/3-mot-key-technologies.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/4-mot-usage-scenarios.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/5-mot-performance-benchmarks.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/1-introducing-mot/introducing-mot.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/1-using-mot-overview.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/2-mot-preparation.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/3-mot-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/4-mot-usage.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/5-mot-administration.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/6-mot-sample-tpcc-benchmark.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/using-mot.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/using-mot.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/2-using-mot/using-mot.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/2-using-mot/using-mot.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-1.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-2.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-3.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-4.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-5.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-6.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-7.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-8.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/3-9.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/3-concepts-of-mot/concepts-of-mot.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/1-references.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/1-references.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/1-references.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/1-references.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/2-glossary.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/2-glossary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/2-glossary.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/2-glossary.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/mot-appendix.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/mot-appendix.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/4-appendix/mot-appendix.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/4-appendix/mot-appendix.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/mot-engine.md b/product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/mot-engine.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/mot-engine/mot-engine.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/mot-engine/mot-engine.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/primary-and-standby-management.md b/product/zh/docs-mogdb/v6.0/administrator-guide/primary-and-standby-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/primary-and-standby-management.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/primary-and-standby-management.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/0-starting-and-stopping-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/1-routine-maintenance-check-items.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/10-data-security-maintenance-suggestions.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/11-log-reference.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/11-log-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/11-log-reference.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/11-log-reference.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/2-checking-os-parameters.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/2-checking-os-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/2-checking-os-parameters.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/2-checking-os-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/3-checking-mogdb-health-status.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/4-checking-database-performance.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/4-checking-database-performance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/4-checking-database-performance.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/4-checking-database-performance.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/5-checking-and-deleting-logs.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/6-checking-time-consistency.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/6-checking-time-consistency.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/6-checking-time-consistency.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/6-checking-time-consistency.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/7-checking-the-number-of-application-connections.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/8-routinely-maintaining-tables.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/9-routinely-recreating-an-index.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/exporting-and-viewing-the-wdr.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/routine-maintenance.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/routine-maintenance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/routine-maintenance.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/routine-maintenance.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/slow-sql-diagnosis.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/slow-sql-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/slow-sql-diagnosis.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/slow-sql-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md b/product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/routine-maintenance/using-the-gsql-client-for-connection.md diff --git a/product/zh/docs-mogdb/v5.1/administrator-guide/upgrade-guide.md b/product/zh/docs-mogdb/v6.0/administrator-guide/upgrade-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/administrator-guide/upgrade-guide.md rename to product/zh/docs-mogdb/v6.0/administrator-guide/upgrade-guide.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/adaptive-plan-selection.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/characteristic-description-abo-optimizer.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/abo-optimizer/intelligent-cardinality-estimation.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai-capabilities.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai-capabilities.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai-capabilities.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai-capabilities.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/1-database-metric-collection-forecast-and-exception-detection.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/2-root-cause-analysis-for-slow-sql-statements.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/3-index-recommendation.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/4-parameter-tuning-and-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/5-slow-sql-statement-discovery.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/ai4db-autonomous-database-o-m/characteristic-description-ai4db.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md b/product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/ai-capabilities/db4ai-database-driven-ai.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/1-standard-sql.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/1-standard-sql.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/1-standard-sql.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/1-standard-sql.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/2-standard-development-interfaces.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/3-postgresql-api-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/ECPG.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/ECPG.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/ECPG.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/ECPG.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-MySQL-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/MogDB-Oracle-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/application-development-interfaces.md b/product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/application-development-interfaces.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/application-development-interfaces/application-development-interfaces.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/application-development-interfaces/application-development-interfaces.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/characteristic-description-overview.md b/product/zh/docs-mogdb/v6.0/characteristic-description/characteristic-description-overview.md similarity index 98% rename from product/zh/docs-mogdb/v5.1/characteristic-description/characteristic-description-overview.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/characteristic-description-overview.md index 9dd8b775..8cdeb476 100644 --- a/product/zh/docs-mogdb/v5.1/characteristic-description/characteristic-description-overview.md +++ b/product/zh/docs-mogdb/v6.0/characteristic-description/characteristic-description-overview.md @@ -7,7 +7,7 @@ date: 2022-09-01 # 特性描述 -MogDB 5.1版本具有以下特性: +MogDB6.0版本具有以下特性: + 高性能 + [CBO优化器](./high-performance/1-cbo-optimizer.md) diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/characteristic-description.md b/product/zh/docs-mogdb/v6.0/characteristic-description/characteristic-description.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/characteristic-description.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/characteristic-description.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/add-rowtype-attribute-to-the-view.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-distinct-performance-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-keep-clause.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/aggregate-functions-support-scenario-extensions.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/case-when-without-parentheses-in-some-scenarios.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/case-when-without-parentheses-in-some-scenarios.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/case-when-without-parentheses-in-some-scenarios.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/case-when-without-parentheses-in-some-scenarios.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/chr-and-ascii-behave-like-oracle-in-non-UTF8.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/chr-and-ascii-behave-like-oracle-in-non-UTF8.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/chr-and-ascii-behave-like-oracle-in-non-UTF8.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/chr-and-ascii-behave-like-oracle-in-non-UTF8.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/compat-for-oracle-hint.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/compat-for-oracle-hint.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/compat-for-oracle-hint.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/compat-for-oracle-hint.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/compatibility.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/compatibility.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/compatible-with-mysql-alias-support-for-single-quotes.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/create-view-with-read-only.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/create-view-with-read-only.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/create-view-with-read-only.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/create-view-with-read-only.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/current_date-current_time-keywords-as-field-name.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/custom-type-array.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/custom-type-array.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/custom-type-array.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/custom-type-array.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/customize-type-pass-parameter-by-name.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/customize-type-pass-parameter-by-name.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/customize-type-pass-parameter-by-name.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/customize-type-pass-parameter-by-name.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/define-substored-procedures-in-stored-procedures.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/define-substored-procedures-in-stored-procedures.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/define-substored-procedures-in-stored-procedures.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/define-substored-procedures-in-stored-procedures.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/for-update-supports-outer-join.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/for-update-supports-outer-join.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/for-update-supports-outer-join.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/for-update-supports-outer-join.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/format-error-backtrace.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/format-error-backtrace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/format-error-backtrace.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/format-error-backtrace.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/generated-column-as-partition-key.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/generated-column-as-partition-key.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/generated-column-as-partition-key.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/generated-column-as-partition-key.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/information-schema-columns-add-extra-field.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/information-schema-columns-add-extra-field.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/information-schema-columns-add-extra-field.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/information-schema-columns-add-extra-field.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/locate-current-sql-in-complex-stored-procedure.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/locate-current-sql-in-complex-stored-procedure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/locate-current-sql-in-complex-stored-procedure.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/locate-current-sql-in-complex-stored-procedure.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/merge-into-add-delete.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/merge-into-add-delete.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/merge-into-add-delete.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/merge-into-add-delete.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/mod-function-float-to-int.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/mod-function-float-to-int.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/mod-function-float-to-int.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/mod-function-float-to-int.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/mogdb-supports-insert-all.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/mogdb-supports-insert-all.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/mogdb-supports-insert-all.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/mogdb-supports-insert-all.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/oid-type-regrole-and-regnamespace.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/oid-type-regrole-and-regnamespace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/oid-type-regrole-and-regnamespace.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/oid-type-regrole-and-regnamespace.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/oracle-dblink-syntax-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/pivot-and-unpivot.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/pivot-and-unpivot.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/pivot-and-unpivot.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/pivot-and-unpivot.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/range-partition-table-support-numeric-interval-partition.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/range-partition-table-support-numeric-interval-partition.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/range-partition-table-support-numeric-interval-partition.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/range-partition-table-support-numeric-interval-partition.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/remove-type-conversion-hint-when-creating-package-function-procedure.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-bypass-method-when-merge-into-hit-index.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-adding-nocopy-attributes-to-procedure-and-function-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-constants-in-package-as-default-values.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-copy-rtrim.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-copy-rtrim.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-for-copy-rtrim.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-for-copy-rtrim.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-java-plsql-anonymous-block-binding-variables.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-java-plsql-anonymous-block-binding-variables.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-java-plsql-anonymous-block-binding-variables.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-java-plsql-anonymous-block-binding-variables.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-offset-as-table-and-field-names.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-offset-as-table-and-field-names.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-offset-as-table-and-field-names.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-offset-as-table-and-field-names.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-passing-the-count-attribute.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-passing-the-count-attribute.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-passing-the-count-attribute.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-passing-the-count-attribute.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-plpgsql-subtype.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-plpgsql-subtype.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-plpgsql-subtype.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-plpgsql-subtype.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-q-quote-escape-character.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-q-quote-escape-character.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-q-quote-escape-character.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-q-quote-escape-character.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-subtracting-two-date-types-to-return-numeric-type.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-synonym-calls-without-parentheses-for-function-without-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-table-function.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-table-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-table-function.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-table-function.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-to-keep-the-same-name-after-the-end-with-oracle.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-where-current-of.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-where-current-of.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/support-where-current-of.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/support-where-current-of.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/type-conversion-for-union-and-decode.md b/product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/type-conversion-for-union-and-decode.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/compatibility/type-conversion-for-union-and-decode.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/compatibility/type-conversion-for-union-and-decode.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/1-access-control-model.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/1-access-control-model.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/1-access-control-model.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/1-access-control-model.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/10-row-level-access-control.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/10-row-level-access-control.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/10-row-level-access-control.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/10-row-level-access-control.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/11-password-strength-verification.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/11-password-strength-verification.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/11-password-strength-verification.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/11-password-strength-verification.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/12-equality-query-in-a-fully-encrypted-database.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/13-ledger-database-mechanism.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/13-ledger-database-mechanism.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/13-ledger-database-mechanism.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/13-ledger-database-mechanism.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/14-transparent-data-encryption.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/14-transparent-data-encryption.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/14-transparent-data-encryption.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/14-transparent-data-encryption.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/2-separation-of-control-and-access-permissions.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/3-database-encryption-authentication.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/3-database-encryption-authentication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/3-database-encryption-authentication.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/3-database-encryption-authentication.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/4-data-encryption-and-storage.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/4-data-encryption-and-storage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/4-data-encryption-and-storage.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/4-data-encryption-and-storage.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/5-database-audit.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/5-database-audit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/5-database-audit.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/5-database-audit.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/6-network-communication-security.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/6-network-communication-security.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/6-network-communication-security.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/6-network-communication-security.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/7-resource-label.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/7-resource-label.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/7-resource-label.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/7-resource-label.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/8-unified-audit.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/8-unified-audit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/8-unified-audit.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/8-unified-audit.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/9-dynamic-data-anonymization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/9-dynamic-data-anonymization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/9-dynamic-data-anonymization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/9-dynamic-data-anonymization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/database-security/database-security.md b/product/zh/docs-mogdb/v6.0/characteristic-description/database-security/database-security.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/database-security/database-security.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/database-security/database-security.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/1-support-for-functions-and-stored-procedures.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/10-autonomous-transaction.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/10-autonomous-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/10-autonomous-transaction.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/10-autonomous-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/11-global-temporary-table.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/11-global-temporary-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/11-global-temporary-table.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/11-global-temporary-table.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/12-pseudocolumn-rownum.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/13-stored-procedure-debugging.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/14-jdbc-client-load-balancing-and-readwrite-isolation.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/15-in-place-update-storage-engine.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/16-publication-subscription.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/16-publication-subscription.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/16-publication-subscription.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/16-publication-subscription.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/17-foreign-key-lock-enhancement.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/18-data-compression-in-oltp-scenarios.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/19-transaction-async-submit.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/19-transaction-async-submit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/19-transaction-async-submit.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/19-transaction-async-submit.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/2-sql-hints.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/2-sql-hints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/2-sql-hints.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/2-sql-hints.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/20-copy-import-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/20-copy-import-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/20-copy-import-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/20-copy-import-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/21-dynamic-partition-pruning.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/22-sql-running-status-observation.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/23-index-creation-parallel-control.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/24-brin-index.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/24-brin-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/24-brin-index.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/24-brin-index.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/25-bloom-index.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/25-bloom-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/25-bloom-index.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/25-bloom-index.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/3-full-text-indexing.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/3-full-text-indexing.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/3-full-text-indexing.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/3-full-text-indexing.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/4-copy-interface-for-error-tolerance.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/5-partitioning.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/5-partitioning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/5-partitioning.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/5-partitioning.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/6-support-for-advanced-analysis-functions.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/7-materialized-view.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/7-materialized-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/7-materialized-view.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/7-materialized-view.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/8-hyperloglog.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/8-hyperloglog.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/8-hyperloglog.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/8-hyperloglog.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/9-creating-an-index-online.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/9-creating-an-index-online.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/9-creating-an-index-online.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/9-creating-an-index-online.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/enterprise-level-features.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/enterprise-level-features.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/enterprise-level-features.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/enterprise-level-features.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/event-trigger.md b/product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/event-trigger.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/enterprise-level-features/event-trigger.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/enterprise-level-features/event-trigger.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/1-primary-standby.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/1-primary-standby.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/1-primary-standby.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/1-primary-standby.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/10-adding-or-deleting-a-standby-server.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/11-delaying-entering-the-maximum-availability-mode.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/12-parallel-logical-decoding.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/12-parallel-logical-decoding.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/12-parallel-logical-decoding.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/12-parallel-logical-decoding.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/13-dcf.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/13-dcf.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/14-cm.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/14-cm.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/14-cm.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/14-cm.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/15-global-syscache.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/15-global-syscache.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/15-global-syscache.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/15-global-syscache.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/16-using-a-standby-node-to-build-a-standby-node.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/17-two-city-three-dc-dr.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/17-two-city-three-dc-dr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/17-two-city-three-dc-dr.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/17-two-city-three-dc-dr.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/2-logical-replication.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/2-logical-replication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/2-logical-replication.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/2-logical-replication.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/4-logical-backup.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/4-logical-backup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/4-logical-backup.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/4-logical-backup.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/5-physical-backup.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/5-physical-backup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/5-physical-backup.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/5-physical-backup.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/6-automatic-job-retry-upon-failure.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/7-ultimate-rto.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/7-ultimate-rto.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/7-ultimate-rto.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/7-ultimate-rto.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/8-cascaded-standby-server.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/8-cascaded-standby-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/8-cascaded-standby-server.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/8-cascaded-standby-server.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/9-delayed-replay.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/9-delayed-replay.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/9-delayed-replay.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/9-delayed-replay.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/cm-cluster-management-component-supporting-two-node-deployment.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/ddl-query-of-view.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/ddl-query-of-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/ddl-query-of-view.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/ddl-query-of-view.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/enhanced-primary-and-standby-high-availability-capabilities.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/enhanced-primary-and-standby-high-availability-capabilities.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/enhanced-primary-and-standby-high-availability-capabilities.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/enhanced-primary-and-standby-high-availability-capabilities.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/high-availability.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/table-level-parallel-recovery-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/table-level-parallel-recovery-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-availability/table-level-parallel-recovery-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-availability/table-level-parallel-recovery-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/1-cbo-optimizer.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/1-cbo-optimizer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/1-cbo-optimizer.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/1-cbo-optimizer.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/10-xlog-no-lock-flush.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/10-xlog-no-lock-flush.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/10-xlog-no-lock-flush.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/10-xlog-no-lock-flush.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/11-parallel-page-based-redo-for-ustore.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/12-row-store-execution-to-vectorized-execution.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/2-llvm.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/2-llvm.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/2-llvm.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/2-llvm.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/3-vectorized-engine.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/3-vectorized-engine.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/3-vectorized-engine.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/3-vectorized-engine.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/4-hybrid-row-column-store.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/4-hybrid-row-column-store.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/4-hybrid-row-column-store.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/4-hybrid-row-column-store.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/5-adaptive-compression.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/5-adaptive-compression.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/5-adaptive-compression.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/5-adaptive-compression.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/7-kunpeng-numa-architecture-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/8-high-concurrency-of-thread-pools.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/9-smp-for-parallel-execution.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/9-smp-for-parallel-execution.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/9-smp-for-parallel-execution.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/9-smp-for-parallel-execution.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/adaptive-two-phase-aggregation.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/adaptive-two-phase-aggregation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/adaptive-two-phase-aggregation.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/adaptive-two-phase-aggregation.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/astore-row-level-compression.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/astore-row-level-compression.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/astore-row-level-compression.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/astore-row-level-compression.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/btree-index-compression.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/btree-index-compression.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/btree-index-compression.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/btree-index-compression.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-tracing-backend-key-thread.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/enhancement-of-wal-redo-performance.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/high-performance.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/high-performance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/high-performance.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/high-performance.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/join-predicate-pushdown.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/join-predicate-pushdown.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/join-predicate-pushdown.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/join-predicate-pushdown.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/large-page-memory.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/large-page-memory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/large-page-memory.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/large-page-memory.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/ock-accelerated-data-transmission.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/ock-accelerated-data-transmission.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/ock-accelerated-data-transmission.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/ock-accelerated-data-transmission.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/ock-scrlock-accelerate-distributed-lock.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/optimizer-trace.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/optimizer-trace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/optimizer-trace.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/optimizer-trace.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/ordering-operator-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/ordering-operator-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/ordering-operator-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/ordering-operator-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-index-scan.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-index-scan.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-index-scan.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-index-scan.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-query-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-query-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/parallel-query-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/parallel-query-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/pbe-like-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/pbe-like-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/pbe-like-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/pbe-like-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/seqscan-prefetch.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/seqscan-prefetch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/seqscan-prefetch.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/seqscan-prefetch.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/sql-bypass.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/sql-bypass.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/sql-bypass.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/sql-bypass.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/subtransaction-concurrent-rollback-process-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/subtransaction-concurrent-rollback-process-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/subtransaction-concurrent-rollback-process-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/subtransaction-concurrent-rollback-process-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/tracing-SQL-function.md b/product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/tracing-SQL-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/high-performance/tracing-SQL-function.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/high-performance/tracing-SQL-function.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/1-gray-upgrade.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/1-gray-upgrade.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/1-gray-upgrade.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/1-gray-upgrade.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/2-workload-diagnosis-report.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/2-workload-diagnosis-report.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/2-workload-diagnosis-report.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/2-workload-diagnosis-report.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/3-slow-sql-diagnosis.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/3-slow-sql-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/3-slow-sql-diagnosis.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/3-slow-sql-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/4-session-performance-diagnosis.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/4-session-performance-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/4-session-performance-diagnosis.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/4-session-performance-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/5-system-kpi-aided-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/built-in-stack-tool.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/built-in-stack-tool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/built-in-stack-tool.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/built-in-stack-tool.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/dcf-module-tracing.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/dcf-module-tracing.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/error-when-writing-illegal-characters.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/error-when-writing-illegal-characters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/error-when-writing-illegal-characters.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/error-when-writing-illegal-characters.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/extension-splitting.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/extension-splitting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/extension-splitting.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/extension-splitting.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/fault-diagnosis.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/fault-diagnosis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/fault-diagnosis.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/fault-diagnosis.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/light-lock-export-and-analysis.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/light-lock-export-and-analysis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/light-lock-export-and-analysis.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/light-lock-export-and-analysis.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/maintainability.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/maintainability.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/maintainability.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/maintainability.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/pageinspect-pagehack.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/pageinspect-pagehack.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/pageinspect-pagehack.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/pageinspect-pagehack.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/sql-patch.md b/product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/sql-patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/maintainability/sql-patch.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/maintainability/sql-patch.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md b/product/zh/docs-mogdb/v6.0/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/middleware/deploying-a-distributed-database-using-kubernetes.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/middleware/distributed-analysis-capabilities.md b/product/zh/docs-mogdb/v6.0/characteristic-description/middleware/distributed-analysis-capabilities.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/middleware/distributed-analysis-capabilities.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/middleware/distributed-analysis-capabilities.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/middleware/distributed-database-capability.md b/product/zh/docs-mogdb/v6.0/characteristic-description/middleware/distributed-database-capability.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/middleware/distributed-database-capability.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/middleware/distributed-database-capability.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/middleware/middleware.md b/product/zh/docs-mogdb/v6.0/characteristic-description/middleware/middleware.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/middleware/middleware.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/middleware/middleware.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/DSS-enhancements.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/DSS-enhancements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/DSS-enhancements.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/DSS-enhancements.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/DSS-resource-pooling.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/DSS-resource-pooling.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/DSS-resource-pooling.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/DSS-resource-pooling.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/description-of-resource-pooling-feature.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/description-of-resource-pooling-feature.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/description-of-resource-pooling-feature.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/description-of-resource-pooling-feature.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/extreme-rto-on-demand-playback.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/extreme-rto-on-demand-playback.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/extreme-rto-on-demand-playback.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/extreme-rto-on-demand-playback.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/primary-and-standby-dual-cluster-disaster-recovery.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/primary-and-standby-dual-cluster-disaster-recovery.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/primary-and-standby-dual-cluster-disaster-recovery.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/primary-and-standby-dual-cluster-disaster-recovery.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/resource-pooling-operator-offloading.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/resource-pooling-operator-offloading.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/resource-pooling-operator-offloading.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/resource-pooling-operator-offloading.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/resource-pooling-performance-optimization.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/resource-pooling-performance-optimization.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/resource-pooling-performance-optimization.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/resource-pooling-performance-optimization.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/resource-pooling.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/resource-pooling.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/resource-pooling.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/resource-pooling.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/transparent-write-forwarding-within-standby-node-transaction.md b/product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/transparent-write-forwarding-within-standby-node-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/resource-pooling/transparent-write-forwarding-within-standby-node-transaction.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/resource-pooling/transparent-write-forwarding-within-standby-node-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md b/product/zh/docs-mogdb/v6.0/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/workload-management/high-latency-escape-at-the-infrastructure-layer.md diff --git a/product/zh/docs-mogdb/v5.1/characteristic-description/workload-management/workload-management.md b/product/zh/docs-mogdb/v6.0/characteristic-description/workload-management/workload-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/characteristic-description/workload-management/workload-management.md rename to product/zh/docs-mogdb/v6.0/characteristic-description/workload-management/workload-management.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-brain-split-fault.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-cluster-manual-failover.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/cm-fault/cm-fault.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/common-fault-locating-cases.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-after-installation-on-x86.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-full-disk-space.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-due-to-incorrect-settings-of-guc-parameter-log-directory.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-dump-occurs-when-removeipc-is-enabled.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/core-fault-locating/core-fault-locating.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/after-you-run-the-du-command.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/disk-space-usage-reaches-the-threshold.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/error-no-space-left-on-device-is-displayed.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-is-damaged-in-the-xfs-file-system.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/file-system-disk-memory.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/insufficient-memory.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/shared-memory-leak.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/file-system-disk-memory/when-the-tpcc-is-running.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/b-tree-index-faults.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/index-fault.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/reindexing-fails.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/index-fault/when-a-user-specifies-only-an-index-name.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/an-error-occurs-during-integer-conversion.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/different-data-is-displayed.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/forcibly-terminating-a-session.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/permission-session-data-type/permission-session-data-type.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/performance-deterioration.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/primary-node-is-hung-in-demoting.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/query-failure.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-ha-concurrency.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/service-startup-failure.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/standby-node-in-the-need-repair-state.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/service-ha-concurrency/too-many-clients-already.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-the-status-of-a-query-statement.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/analyzing-whether-a-query-statement-is-blocked.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/lock-wait-timeout-is-displayed.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/low-query-efficiency.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/slow-response-to-a-query-statement.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/sql-fault/sql-fault.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/an-error-is-reported-when-the-table-partition-is-modified.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-partition-table.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-cases/table-partition-table/table-size-does-not-change.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-methods.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-methods.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-fault-locating-methods.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-fault-locating-methods.md diff --git a/product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-faults-and-identification.md b/product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-faults-and-identification.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/common-faults-and-identification/common-faults-and-identification.md rename to product/zh/docs-mogdb/v6.0/common-faults-and-identification/common-faults-and-identification.md diff --git a/product/zh/docs-mogdb/v5.1/communication-matrix.md b/product/zh/docs-mogdb/v6.0/communication-matrix.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/communication-matrix.md rename to product/zh/docs-mogdb/v6.0/communication-matrix.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/1-1-stored-procedure.md b/product/zh/docs-mogdb/v6.0/developer-guide/1-1-stored-procedure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/1-1-stored-procedure.md rename to product/zh/docs-mogdb/v6.0/developer-guide/1-1-stored-procedure.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md b/product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md rename to product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/1-introduction-to-autonomous-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md b/product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md rename to product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/2-function-supporting-autonomous-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md b/product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md rename to product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/3-stored-procedure-supporting-autonomous-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/4-restrictions.md b/product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/4-restrictions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/4-restrictions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/4-restrictions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md b/product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md rename to product/zh/docs-mogdb/v6.0/developer-guide/autonomous-transaction/anonymous-block-supporting-autonomous-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/1-development-based-on-jdbc-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/10-example-common-operations.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/11-example-retrying-sql-queries-for-applications.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/12-example-importing-and-exporting-data-through-local-files.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/13-example-2-migrating-data-from-a-my-database-to-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14-example-logic-replication-code.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/14.1-example-parameters-for-connecting-to-the-database-in-different-scenarios.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/1-java-sql-Connection.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/10-javax-sql-DataSource.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/11-javax-sql-PooledConnection.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/12-javax-naming-Context.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/13-javax-naming-spi-InitialContextFactory.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/14-CopyManager.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/2-java-sql-CallableStatement.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/3-java-sql-DatabaseMetaData.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/4-java-sql-Driver.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/5-java-sql-PreparedStatement.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/6-java-sql-ResultSet.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/7-java-sql-ResultSetMetaData.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/8-java-sql-Statement.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/9-javax-sql-ConnectionPoolDataSource.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/15-JDBC/jdbc-interface-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/2-jdbc-package-driver-class-and-environment-class.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/3-development-process.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/4-loading-the-driver.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/5-connecting-to-a-database.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/6-connecting-to-a-database-using-ssl.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/7-running-sql-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8-processing-data-in-a-result-set.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/8.1-log-management.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/9-closing-a-connection.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/connecting-to-a-database-using-uds.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/development-based-on-jdbc.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/example-jdbc-primary-and-backup-cluster-load-balancing.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-based-common-parameter-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/2-development-based-on-jdbc/jdbc-release-notes.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/1-development-based-on-odbc.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/2-odbc-packages-dependent-libraries-and-header-files.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/3-configuring-a-data-source-in-the-linux-os.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/4-development-process.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/4-development-process.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/4-development-process.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/4-development-process.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5-example-common-functions-and-batch-binding.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/5.1-typical-application-scenarios-and-configurations.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-0-odbc-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-1-SQLAllocEnv.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-10-SQLExecDirect.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-11-SQLExecute.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-12-SQLFetch.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-13-SQLFreeStmt.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-14-SQLFreeConnect.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-15-SQLFreeHandle.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-16-SQLFreeEnv.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-17-SQLPrepare.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-18-SQLGetData.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-19-SQLGetDiagRec.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-2-SQLAllocConnect.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-20-SQLSetConnectAttr.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-21-SQLSetEnvAttr.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-22-SQLSetStmtAttr.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-23-Examples.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-3-SQLAllocHandle.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-4-SQLAllocStmt.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-5-SQLBindCol.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-6-SQLBindParameter.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-7-SQLColAttribute.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-8-SQLConnect.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/2-9-SQLDisconnect.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/3-development-based-on-odbc/6-ODBC/odbc-interface-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/1-database-connection-control-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/10-PQstatus.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/2-PQconnectdbParams.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/3-PQconnectdb.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/4-PQconninfoParse.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/5-PQconnectStart.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/6-PQerrorMessage.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/7-PQsetdbLogin.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/8-PQfinish.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/1-database-connection-control-functions/9-PQreset.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/1-PQclear.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/10-PQntuples.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/11-PQprepare.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/12-PQresultStatus.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/2-PQexec.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/3-PQexecParams.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/4-PQexecParamsBatch.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/5-PQexecPrepared.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/6-PQexecPreparedBatch.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/7-PQfname.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/8-PQgetvalue.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/9-PQnfields.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/2-database-statement-execution-functions/database-statement-execution-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/1-functions-for-asynchronous-command-processing.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/2-PQsendQuery.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/3-PQsendQueryParams.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/4-PQsendPrepare.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/5-PQsendQueryPrepared.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/3-functions-for-asynchronous-command-processing/6-PQflush.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/1-PQgetCancel.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/2-PQfreeCancel.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/3-PQcancel.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/4-functions-for-canceling-queries-in-progress/functions-for-canceling-queries-in-progress.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/2-libpq/libpq-api-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/dependent-header-files-of-libpq.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-based-on-libpq.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-process.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-process.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/development-process.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/development-process.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/libpq-example.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/libpq-example.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/libpq-example.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/libpq-example.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/1-psycopg-based-development.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/10.1-example-common-operations.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/1-psycopg2-connect.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/10-connection-close.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/2-connection-cursor.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/3-cursor-execute-query-vars-list.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/4-curosr-executemany-query-vars-list.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/5-connection-commit.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/6-connection-rollback.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/7-cursor-fetchone.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/8-cursor-fetchall.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/9-cursor-close.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/11-psycopg-api-reference/psycopg-api-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/12-psycopg2-release-notes.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/2-psycopg-package.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/3.1-development-process.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/4-connecting-to-a-database.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/5-adaptation-of-python-values-to-sql-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/6-new-features-in-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/4.1-psycopg-based-development/9-connecting-to-the-database-using-ssl.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/5-commissioning.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/5-commissioning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/5-commissioning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/5-commissioning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/application-development-tutorial.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/application-development-tutorial.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/application-development-tutorial.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/application-development-tutorial.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/design-specification.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/design-specification.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/design-specification.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/design-specification.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/introduction-to-development-specifications.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/introduction-to-development-specifications.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/introduction-to-development-specifications.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/introduction-to-development-specifications.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/naming-specification.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/naming-specification.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/naming-specification.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/naming-specification.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/overview-of-development-specifications.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/overview-of-development-specifications.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/overview-of-development-specifications.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/overview-of-development-specifications.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/postgresql-compatibility.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/postgresql-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/postgresql-compatibility.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/postgresql-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/query-operations.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/query-operations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/query-operations.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/query-operations.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/syntax-specification.md b/product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/syntax-specification.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/dev/development-specifications/syntax-specification.md rename to product/zh/docs-mogdb/v6.0/developer-guide/dev/development-specifications/syntax-specification.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/developer-guide.md b/product/zh/docs-mogdb/v6.0/developer-guide/developer-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/developer-guide.md rename to product/zh/docs-mogdb/v6.0/developer-guide/developer-guide.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/extension.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/extension.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/extension.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/extension.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/1-oracle_fdw.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/2-mysql_fdw.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/3-postgres_fdw.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/dblink.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/dblink.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/dblink.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/dblink.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/fdw-introduction.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/file_fdw.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/file_fdw.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/foreign-data-wrapper/file_fdw.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/foreign-data-wrapper/file_fdw.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-installation.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-installation.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-installation.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-parameters.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-parameters.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/libsmartscan/libsmartscan.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-constraints.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-constraints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-constraints.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-constraints.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-installation.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-installation.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-installation.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-guc-parameters.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-guc-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-guc-parameters.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-guc-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-view.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-view.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension-reference/ndpplugin-extension-view.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/ndpplugin-extension/ndpplugin-extension.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/ndpplugin-extension/ndpplugin-extension.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_bulkload-user-guide.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_bulkload-user-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_bulkload-user-guide.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_bulkload-user-guide.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_prewarm-user-guide.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_prewarm-user-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_prewarm-user-guide.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_prewarm-user-guide.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_repack-user-guide.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_repack-user-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_repack-user-guide.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_repack-user-guide.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_trgm-user-guide.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_trgm-user-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/pg_trgm-user-guide.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/pg_trgm-user-guide.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-extension.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-extension.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-extension.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-extension.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/postgis-support-and-constraints.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/using-postgis.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/using-postgis.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/postgis-extension/using-postgis.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/postgis-extension/using-postgis.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/wal2json-user-guide.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/wal2json-user-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/wal2json-user-guide.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/wal2json-user-guide.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/extension/whale.md b/product/zh/docs-mogdb/v6.0/developer-guide/extension/whale.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/extension/whale.md rename to product/zh/docs-mogdb/v6.0/developer-guide/extension/whale.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/1-logical-decoding.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/2-logical-decoding-by-sql-function-interfaces.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/logical-decoding.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/logical-decoding.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-decoding/logical-decoding.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-decoding/logical-decoding.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-replication.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-replication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/logical-replication.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/logical-replication.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/architecture.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/architecture.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/architecture.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/architecture.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/configuration-settings.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/configuration-settings.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/configuration-settings.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/configuration-settings.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/conflicts.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/conflicts.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/conflicts.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/conflicts.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/monitoring.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/monitoring.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/monitoring.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/monitoring.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publication-subscription.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publication-subscription.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publication-subscription.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publication-subscription.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publications.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publications.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/publications.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/publications.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/quick-setup.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/quick-setup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/quick-setup.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/quick-setup.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/restrictions.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/restrictions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/restrictions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/restrictions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/security.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/security.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/security.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/security.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/subscriptions.md b/product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/subscriptions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/logical-replication/publication-subscription/subscriptions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/logical-replication/publication-subscription/subscriptions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/1-materialized-view-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/1-materialized-view-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/1-materialized-view-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/1-materialized-view-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/1-full-materialized-view-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/2-full-materialized-view-usage.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/3-full-materialized-view-support-and-constraints.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/2-full-materialized-view/full-materialized-view.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/1-incremental-materialized-view-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/2-incremental-materialized-view-usage.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/3-incremental-materialized-view-support-and-constraints.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md b/product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md rename to product/zh/docs-mogdb/v6.0/developer-guide/materialized-view/3-incremental-materialized-view/incremental-materialized-view.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/assessment-tool.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/assessment-tool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/assessment-tool.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/assessment-tool.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-extension.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-installation.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-mysql-protocol-compatibility.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-mysql-protocol-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-mysql-protocol-compatibility.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-mysql-protocol-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-restrictions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-reset-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/dolphin-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/guc-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-column-name-identifiers.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/identifiers/dolphin-identifiers.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-binary-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bit-string-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-bool-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-character-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-date-time-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-enumeration-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-numeric-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-type-conversion.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-type-conversion.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-type-conversion.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/data-types/dolphin-type-conversion.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-alias.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-alias.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-alias.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-alias.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dcl-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-ddl-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-dml-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-keywords.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/dolphin-sql-reference.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-conditional-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/expressions/dolphin-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-advisory-lock-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-aggregate-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-arithmetic-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-assignment-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-b-compatible-database-lock.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-bit-string-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-character-processing-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-comment-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-json-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-json-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-json-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-json-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-compatible-operators-and-operations.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-conditional-expression-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-date-and-time-processing-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-json-jsonb-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-logical-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-network-address-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-password-function.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-password-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-password-function.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-password-function.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-system-information-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/functions-and-operators/dolphin-type-conversion-functions.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-database.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-function.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-procedure.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-server.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table-partition.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-tablespace.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-alter-view.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-analyze-analyse.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-ast.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-call.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-call.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-call.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-call.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-checksum-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-database.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-function.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-index.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-procedure.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-server.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-as.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table-partition.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-tablespace.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-trigger.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-create-view.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-describe-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-do.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-database.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-index.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-drop-tablespace.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-execute.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-explain.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-flush-binary-logs.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant-revoke-proxy.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-grant.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-insert.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-kill.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-load-data.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-optimize-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-prepare.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-rename-user.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-revoke.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select-hint.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-select.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-charset.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-set-password.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-character-set.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-collation.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-columns.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-database.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-function.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-procedure.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-table.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-trigger.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-create-view.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-databases.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-engines.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-engines.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-engines.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-engines.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-function-status.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-grants.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-index.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-master-status.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-open-tables.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-open-tables.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-open-tables.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-open-tables.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-plugins.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-privileges.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-procedure-status.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-processlist.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-hosts.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-status.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-status.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-slave-status.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-status.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-table-status.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-tables.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-triggers.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-variables.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-show-warnings.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-sql-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-update.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db-name.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db-name.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db-name.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/sql-reference/sql-syntax/dolphin-use-db-name.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-assignment-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/basic-statements/dolphin-basic-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/stored-procedures/dolphin-stored-procedures.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-INDEX_STATISTIC.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_CURRENT.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_CURRENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_CURRENT.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_CURRENT.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_HISTORY.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_HISTORY.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_DIGEST.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_DIGEST.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_DIGEST.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_DIGEST.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_CURRENT.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_CURRENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_CURRENT.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_CURRENT.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.EVENTS_WAITS_SUMMARY_GLOBAL_BY_EVENT_NAME.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.FILE_SUMMARY_BY_INSTANCE.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.FILE_SUMMARY_BY_INSTANCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.FILE_SUMMARY_BY_INSTANCE.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.FILE_SUMMARY_BY_INSTANCE.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_TABLE.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_TABLE.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PERFORMANCE_SCHEMA.TABLE_IO_WAITS_SUMMARY_BY_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-PG_TYPE_NONSTRICT_BASIC_VALUE.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/dolphin-extension/dolphin-syntax/system-views/dolphin-system-views.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/data-check.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/data-check.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/data-check.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/data-check.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/full-migration.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/full-migration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/full-migration.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/full-migration.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/incremental-migration.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/incremental-migration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/incremental-migration.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/incremental-migration.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/migrating-data-from-mysql-to-mogdb.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/migrating-data-from-mysql-to-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/migrating-data-from-mysql-to-mogdb.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/migrating-data-from-mysql-to-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/quick-mysql-migration.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/quick-mysql-migration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/quick-mysql-migration.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/quick-mysql-migration.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/reverse-migration.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/reverse-migration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/migrating-data/reverse-migration.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/migrating-data/reverse-migration.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/mysql-compatible-description.md b/product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/mysql-compatible-description.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/mysql-compatibility-description/mysql-compatible-description.md rename to product/zh/docs-mogdb/v6.0/developer-guide/mysql-compatibility-description/mysql-compatible-description.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-management.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-management.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-management.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/benefits-of-partition-pruning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/dynamic-partition-pruning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/how-to-identify-whether-partition-pruning-has-been-used.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/information-that-can-be-used-for-partition-pruning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/partition-pruning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/partition-pruning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/partition-pruning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/partition-pruning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/static-partition-pruning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/static-partition-pruning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/partition-pruning/static-partition-pruning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/partition-pruning/static-partition-pruning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/recommendations-for-choosing-a-partitioning-strategy.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-hash-partitioning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-list-partitioning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md b/product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md rename to product/zh/docs-mogdb/v6.0/developer-guide/partition-management/recommendations-for-choosing-a-partitioning-strategy/when-to-use-range-partitioning.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-1-plpgsql-overview.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-1-plpgsql-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-1-plpgsql-overview.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-1-plpgsql-overview.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-10-other-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-10-other-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-10-other-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-10-other-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-11-cursors.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-11-cursors.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-11-cursors.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-11-cursors.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-12-retry-management.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-12-retry-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-12-retry-management.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-12-retry-management.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-13-debugging.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-13-debugging.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-13-debugging.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-13-debugging.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-14-package.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-14-package.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-14-package.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-14-package.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-2-data-types.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-2-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-2-data-types.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-2-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-3-data-type-conversion.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-3-data-type-conversion.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-3-data-type-conversion.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-3-data-type-conversion.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-4-arrays-and-records.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-4-arrays-and-records.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-4-arrays-and-records.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-4-arrays-and-records.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-5-declare-syntax.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-5-declare-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-5-declare-syntax.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-5-declare-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-6-basic-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-6-basic-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-6-basic-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-6-basic-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-7-dynamic-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-7-dynamic-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-7-dynamic-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-7-dynamic-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-8-control-statements.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-8-control-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-8-control-statements.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-8-control-statements.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-9-transaction-management.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-9-transaction-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/1-9-transaction-management.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/1-9-transaction-management.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/advanced-packages.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/advanced-packages.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/advanced-packages.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/advanced-packages.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/PKG_SERVICE.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md b/product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md rename to product/zh/docs-mogdb/v6.0/developer-guide/plpgsql/advanced-packages/basic-interfaces/basic-interfaces.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/scheduled-jobs/pkg-service.md b/product/zh/docs-mogdb/v6.0/developer-guide/scheduled-jobs/pkg-service.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/scheduled-jobs/pkg-service.md rename to product/zh/docs-mogdb/v6.0/developer-guide/scheduled-jobs/pkg-service.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/scheduled-jobs/scheduled-jobs.md b/product/zh/docs-mogdb/v6.0/developer-guide/scheduled-jobs/scheduled-jobs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/scheduled-jobs/scheduled-jobs.md rename to product/zh/docs-mogdb/v6.0/developer-guide/scheduled-jobs/scheduled-jobs.md diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/user-defined-functions.md b/product/zh/docs-mogdb/v6.0/developer-guide/user-defined-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/developer-guide/user-defined-functions.md rename to product/zh/docs-mogdb/v6.0/developer-guide/user-defined-functions.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/application-development-faqs.md b/product/zh/docs-mogdb/v6.0/faqs/application-development-faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/application-development-faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/application-development-faqs.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/deployment-and-maintenance-faqs.md b/product/zh/docs-mogdb/v6.0/faqs/deployment-and-maintenance-faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/deployment-and-maintenance-faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/deployment-and-maintenance-faqs.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/faqs.md b/product/zh/docs-mogdb/v6.0/faqs/faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/faqs.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/high-availability-faqs.md b/product/zh/docs-mogdb/v6.0/faqs/high-availability-faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/high-availability-faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/high-availability-faqs.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/migration-faqs.md b/product/zh/docs-mogdb/v6.0/faqs/migration-faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/migration-faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/migration-faqs.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/product-faqs.md b/product/zh/docs-mogdb/v6.0/faqs/product-faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/product-faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/product-faqs.md diff --git a/product/zh/docs-mogdb/v5.1/faqs/upgrade-faqs.md b/product/zh/docs-mogdb/v6.0/faqs/upgrade-faqs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/faqs/upgrade-faqs.md rename to product/zh/docs-mogdb/v6.0/faqs/upgrade-faqs.md diff --git a/product/zh/docs-mogdb/v5.1/glossary.md b/product/zh/docs-mogdb/v6.0/glossary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/glossary.md rename to product/zh/docs-mogdb/v6.0/glossary.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cluster-management.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cluster-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cluster-management.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cluster-management.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_agent.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-cm_server.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/cm-configuration-parameter/cm-configuration-parameter.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/feature-introduction.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/feature-introduction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/feature-introduction.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/feature-introduction.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_ctl-tool.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_persist.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_persist.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-cm_persist.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-cm_persist.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/introduction-to-installation-and-uninstallation-tool.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/manual-configuration-of-vip.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/manual-configuration-of-vip.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/manual-configuration-of-vip.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/manual-configuration-of-vip.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/safety-design.md b/product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/cluster-management/safety-design.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/high-available-dcf.md b/product/zh/docs-mogdb/v6.0/high-available-guide/high-available-dcf.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/high-available-dcf.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/high-available-dcf.md diff --git a/product/zh/docs-mogdb/v5.1/high-available-guide/high-available-guide.md b/product/zh/docs-mogdb/v6.0/high-available-guide/high-available-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/high-available-guide/high-available-guide.md rename to product/zh/docs-mogdb/v6.0/high-available-guide/high-available-guide.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/docker-installation/docker-installation.md b/product/zh/docs-mogdb/v6.0/installation-guide/docker-installation/docker-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/docker-installation/docker-installation.md rename to product/zh/docs-mogdb/v6.0/installation-guide/docker-installation/docker-installation.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/installation-guide.md b/product/zh/docs-mogdb/v6.0/installation-guide/installation-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/installation-guide.md rename to product/zh/docs-mogdb/v6.0/installation-guide/installation-guide.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/installation-preparation/environment-requirement.md b/product/zh/docs-mogdb/v6.0/installation-guide/installation-preparation/environment-requirement.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/installation-preparation/environment-requirement.md rename to product/zh/docs-mogdb/v6.0/installation-guide/installation-preparation/environment-requirement.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/installation-preparation/installation-preparation.md b/product/zh/docs-mogdb/v6.0/installation-guide/installation-preparation/installation-preparation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/installation-preparation/installation-preparation.md rename to product/zh/docs-mogdb/v6.0/installation-guide/installation-preparation/installation-preparation.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/installation-preparation/os-configuration.md b/product/zh/docs-mogdb/v6.0/installation-guide/installation-preparation/os-configuration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/installation-preparation/os-configuration.md rename to product/zh/docs-mogdb/v6.0/installation-guide/installation-preparation/os-configuration.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/manual-installation.md b/product/zh/docs-mogdb/v6.0/installation-guide/manual-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/manual-installation.md rename to product/zh/docs-mogdb/v6.0/installation-guide/manual-installation.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/ptk-based-installation.md b/product/zh/docs-mogdb/v6.0/installation-guide/ptk-based-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/ptk-based-installation.md rename to product/zh/docs-mogdb/v6.0/installation-guide/ptk-based-installation.md diff --git a/product/zh/docs-mogdb/v5.1/installation-guide/recommended-parameter-settings.md b/product/zh/docs-mogdb/v6.0/installation-guide/recommended-parameter-settings.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/installation-guide/recommended-parameter-settings.md rename to product/zh/docs-mogdb/v6.0/installation-guide/recommended-parameter-settings.md diff --git a/product/zh/docs-mogdb/v5.1/mogeaver/mogeaver-overview.md b/product/zh/docs-mogdb/v6.0/mogeaver/mogeaver-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/mogeaver/mogeaver-overview.md rename to product/zh/docs-mogdb/v6.0/mogeaver/mogeaver-overview.md diff --git a/product/zh/docs-mogdb/v5.1/mogeaver/mogeaver-release-notes.md b/product/zh/docs-mogdb/v6.0/mogeaver/mogeaver-release-notes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/mogeaver/mogeaver-release-notes.md rename to product/zh/docs-mogdb/v6.0/mogeaver/mogeaver-release-notes.md diff --git a/product/zh/docs-mogdb/v5.1/mogeaver/mogeaver.md b/product/zh/docs-mogdb/v6.0/mogeaver/mogeaver.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/mogeaver/mogeaver.md rename to product/zh/docs-mogdb/v6.0/mogeaver/mogeaver.md diff --git a/product/zh/docs-mogdb/v5.1/overview.md b/product/zh/docs-mogdb/v6.0/overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/overview.md rename to product/zh/docs-mogdb/v6.0/overview.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/TPCC-performance-tuning-guide.md b/product/zh/docs-mogdb/v6.0/performance-tuning/TPCC-performance-tuning-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/TPCC-performance-tuning-guide.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/TPCC-performance-tuning-guide.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/performance-tuning.md b/product/zh/docs-mogdb/v6.0/performance-tuning/performance-tuning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/performance-tuning.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/performance-tuning.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/experience-in-rewriting-sql-statements.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/hint-based-tuning.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/hint-based-tuning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/hint-based-tuning.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/hint-based-tuning.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/introduction-to-the-sql-execution-plan.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/query-execution-process.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/query-execution-process.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/query-execution-process.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/query-execution-process.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/resetting-key-parameters-during-sql-tuning.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/reviewing-and-modifying-a-table-definition.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning-optimizer.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning-optimizer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning-optimizer.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning-optimizer.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/sql-tuning.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/sql-tuning.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/tuning-process.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/tuning-process.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/tuning-process.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/tuning-process.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/typical-sql-optimization-methods.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/typical-sql-optimization-methods.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/typical-sql-optimization-methods.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/typical-sql-optimization-methods.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/updating-statistics.md b/product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/updating-statistics.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/sql-tuning/updating-statistics.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/sql-tuning/updating-statistics.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-llvm.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-llvm.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-llvm.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-llvm.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-smp.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-smp.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-smp.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-smp.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-ustore.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-ustore.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-ustore.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-ustore.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-vector-engine.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-vector-engine.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/configuring-vector-engine.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/configuring-vector-engine.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-memory-parameters.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-memory-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-memory-parameters.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-memory-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-parameters.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-parameters.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-database-parameters/optimizing-database-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-os-parameters.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-os-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/optimizing-os-parameters.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/optimizing-os-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management-overview.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-load-management.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-load-management.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/creating-resource-pool.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/enabling-resource-load-management.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-management-preparations.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/resource-planning.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/resource-load-management/resource-management-preparations/setting-control-group.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/system-tuning.md b/product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/system-tuning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/system-tuning/system-tuning.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/system-tuning/system-tuning.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/wdr/wdr-report.md b/product/zh/docs-mogdb/v6.0/performance-tuning/wdr/wdr-report.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/wdr/wdr-report.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/wdr/wdr-report.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/wdr/wdr-snapshot-schema.md b/product/zh/docs-mogdb/v6.0/performance-tuning/wdr/wdr-snapshot-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/wdr/wdr-snapshot-schema.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/wdr/wdr-snapshot-schema.md diff --git a/product/zh/docs-mogdb/v5.1/performance-tuning/wdr/wdr.md b/product/zh/docs-mogdb/v6.0/performance-tuning/wdr/wdr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/performance-tuning/wdr/wdr.md rename to product/zh/docs-mogdb/v6.0/performance-tuning/wdr/wdr.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/container-based-installation.md b/product/zh/docs-mogdb/v6.0/quick-start/container-based-installation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/container-based-installation.md rename to product/zh/docs-mogdb/v6.0/quick-start/container-based-installation.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/installation-on-a-single-node.md b/product/zh/docs-mogdb/v6.0/quick-start/installation-on-a-single-node.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/installation-on-a-single-node.md rename to product/zh/docs-mogdb/v6.0/quick-start/installation-on-a-single-node.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/mogdb-access.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/mogdb-access.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/mogdb-access.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/mogdb-access.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/gsql.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/pgcli.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-cli-to-access-mogdb/use-cli-to-access-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/dbeaver.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/mogeaver-usage.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-gui-tools-to-access-mogdb/use-gui-tools-to-access-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/use-middleware-to-access-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/weblogic-configures-mogdb-data-source-reference.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-middleware-to-access-mogdb/websphere-configures-mogdb-data-source-reference.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/adonet.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/c-cpp.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/go.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/java.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/nodejs.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/python.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/rust.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-access/use-programming-language-to-access-mogdb/use-programming-language-to-access-mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogdb-playground.md b/product/zh/docs-mogdb/v6.0/quick-start/mogdb-playground.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogdb-playground.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogdb-playground.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/mogila.md b/product/zh/docs-mogdb/v6.0/quick-start/mogila.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/mogila.md rename to product/zh/docs-mogdb/v6.0/quick-start/mogila.md diff --git a/product/zh/docs-mogdb/v5.1/quick-start/quick-start.md b/product/zh/docs-mogdb/v6.0/quick-start/quick-start.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/quick-start/quick-start.md rename to product/zh/docs-mogdb/v6.0/quick-start/quick-start.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation-for-character-type-expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation-for-character-type-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation-for-character-type-expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation-for-character-type-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation-for-client-connections.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation-for-client-connections.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation-for-client-connections.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation-for-client-connections.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation-merging-rules.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation-merging-rules.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation-merging-rules.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation-merging-rules.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/character-sets-and-collation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/character-sets-and-collation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/column-level-character-sets-and-collation.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/column-level-character-sets-and-collation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/column-level-character-sets-and-collation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/column-level-character-sets-and-collation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/database-level-character-sets-and-collation.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/database-level-character-sets-and-collation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/database-level-character-sets-and-collation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/database-level-character-sets-and-collation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/schema-level-character-sets-and-collation.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/schema-level-character-sets-and-collation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/schema-level-character-sets-and-collation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/schema-level-character-sets-and-collation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/table-level-character-sets-and-collation.md b/product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/table-level-character-sets-and-collation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/character-sets-and-collation/table-level-character-sets-and-collation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/character-sets-and-collation/table-level-character-sets-and-collation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00001-GAUSS-00100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00101-GAUSS-00200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00201-GAUSS-00300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00301-GAUSS-00400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00401-GAUSS-00500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00501-GAUSS-00600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00601-GAUSS-00700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00701-GAUSS-00800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00801-GAUSS-00900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-00901-GAUSS-01000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01001-GAUSS-01100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01101-GAUSS-01200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01201-GAUSS-01300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01301-GAUSS-01400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01401-GAUSS-01500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01501-GAUSS-01600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01601-GAUSS-01700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01701-GAUSS-01800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01801-GAUSS-01900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-01901-GAUSS-02000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02001-GAUSS-02100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02101-GAUSS-02200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02201-GAUSS-02300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02301-GAUSS-02400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02401-GAUSS-02500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02501-GAUSS-02600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02601-GAUSS-02700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02701-GAUSS-02800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02801-GAUSS-02900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-02901-GAUSS-03000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03001-GAUSS-03100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03101-GAUSS-03200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03201-GAUSS-03300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03301-GAUSS-03400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03401-GAUSS-03500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03501-GAUSS-03600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03601-GAUSS-03700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03701-GAUSS-03800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03801-GAUSS-03900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-03901-GAUSS-04000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04001-GAUSS-04100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04101-GAUSS-04200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04201-GAUSS-04300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04301-GAUSS-04400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04401-GAUSS-04500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04501-GAUSS-04600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04601-GAUSS-04700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04701-GAUSS-04800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04801-GAUSS-04900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-04901-GAUSS-05000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05001-GAUSS-05100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05101-GAUSS-05200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05201-GAUSS-05300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05301-GAUSS-05400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05401-GAUSS-05500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05501-GAUSS-05600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05601-GAUSS-05700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05701-GAUSS-05800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05801-GAUSS-05900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-05901-GAUSS-06000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06001-GAUSS-06100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06101-GAUSS-06200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06201-GAUSS-06300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06301-GAUSS-06400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06401-GAUSS-06500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06501-GAUSS-06600.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06601-GAUSS-06700.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06701-GAUSS-06800.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06801-GAUSS-06900.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-06901-GAUSS-07000.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07001-GAUSS-07100.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07101-GAUSS-07200.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07201-GAUSS-07300.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07301-GAUSS-07400.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-07401-GAUSS-07500.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-50000-GAUSS-50999.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-51000-GAUSS-51999.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-52000-GAUSS-52999.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/GAUSS-53000-GAUSS-53699.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class00-class21.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class0A-class0Z.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class22-class24.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class25-class40.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class2B-class2F.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class3B-class3F.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class42-class44.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/class53-class58.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classCG-classTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classF0-classP0.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/classXX-classYY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/description-of-sql-error-codes.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-cm-error-code.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/description-of-sql-error-codes/sqlstate-values-of-mogdb-error-code.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/error-code-reference.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/error-code-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/error-code-reference.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/error-code-reference.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/third-party-library-error-codes.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/third-party-library-error-codes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-code-reference/third-party-library-error-codes.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-code-reference/third-party-library-error-codes.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-log-reference/error-log-reference.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-log-reference/error-log-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-log-reference/error-log-reference.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-log-reference/error-log-reference.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/error-log-reference/kernel-error-message.md b/product/zh/docs-mogdb/v6.0/reference-guide/error-log-reference/kernel-error-message.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/error-log-reference/kernel-error-message.md rename to product/zh/docs-mogdb/v6.0/reference-guide/error-log-reference/kernel-error-message.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/aggregate-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/aggregate-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/aggregate-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/aggregate-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/ai-feature-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/ai-feature-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/ai-feature-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/ai-feature-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/array-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/array-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/array-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/array-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/binary-string-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/binary-string-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/binary-string-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/binary-string-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/bit-string-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/bit-string-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/bit-string-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/bit-string-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/character-processing-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/character-processing-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/character-processing-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/character-processing-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/comparison-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/comparison-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/comparison-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/comparison-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/conditional-expressions-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/conditional-expressions-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/conditional-expressions-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/conditional-expressions-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/data-damage-detection-and-repair-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/date-and-time-processing-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/dynamic-data-masking-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/dynamic-data-masking-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/dynamic-data-masking-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/dynamic-data-masking-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/encrypted-equality-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/encrypted-equality-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/encrypted-equality-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/encrypted-equality-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/event-trigger-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/event-trigger-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/event-trigger-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/event-trigger-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/fault-injection-system-function.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/fault-injection-system-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/fault-injection-system-function.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/fault-injection-system-function.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/geometric-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/geometric-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/geometric-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/geometric-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-syscache-feature-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-syscache-feature-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-syscache-feature-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-syscache-feature-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-temporary-table-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-temporary-table-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/global-temporary-table-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/global-temporary-table-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/hash-function.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/hash-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/hash-function.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/hash-function.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/hll-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/hll-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/hll-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/hll-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-1.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions-2.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/internal-functions/internal-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/internal-functions/internal-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/json-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/json-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/json-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/json-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/ledger-database-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/ledger-database-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/ledger-database-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/ledger-database-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/logical-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/logical-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/logical-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/logical-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/mathematical-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/mathematical-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/mathematical-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/mathematical-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/mode-matching-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/mode-matching-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/mode-matching-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/mode-matching-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/network-address-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/network-address-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/network-address-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/network-address-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/obsolete-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/obsolete-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/obsolete-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/obsolete-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-1.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions-2.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/other-system-functions/other-system-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/prompt-message-function.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/prompt-message-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/prompt-message-function.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/prompt-message-function.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/range-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/range-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/range-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/range-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/resource-pooling-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/resource-pooling-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/resource-pooling-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/resource-pooling-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/security-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/security-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/security-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/security-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/sequence-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/sequence-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/sequence-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/sequence-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/set-returning-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/set-returning-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/set-returning-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/set-returning-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-1.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-2.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions-3.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/statistics-information-functions/statistics-information-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/access-privilege-inquiry-function.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/comment-information-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/other-function.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/other-function.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/other-function.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/other-function.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/schema-visibility-inquiry-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/session-information-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-catalog-information-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/system-information-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-information-functions/transaction-ids-and-snapshots.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/advisory-lock-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/backup-and-restoration-control-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/configuration-settings-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/database-object-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/logical-replication-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/other-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/other-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/other-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/other-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/row-store-compression-system-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/segment-page-storage-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/server-signal-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/snapshot-synchronization-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/system-management-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/undo-system-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/system-management-functions/universal-file-access-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/text-search-functions-and-operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/text-search-functions-and-operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/text-search-functions-and-operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/text-search-functions-and-operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/trigger-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/trigger-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/trigger-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/trigger-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-1.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions-2.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/type-conversion-functions/type-conversion-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/window-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/window-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/window-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/window-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/xml-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/xml-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/functions-and-operators/xml-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/functions-and-operators/xml-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/AI-features.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/AI-features.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/AI-features.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/AI-features.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/DCF-parameters-settings.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/DCF-parameters-settings.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/DCF-parameters-settings.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/DCF-parameters-settings.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/HyperLogLog.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/HyperLogLog.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/HyperLogLog.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/HyperLogLog.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/MogDB-transaction.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/MogDB-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/MogDB-transaction.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/MogDB-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/alarm-detection.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/alarm-detection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/alarm-detection.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/alarm-detection.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/appendix.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/appendix.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/appendix.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/appendix.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/audit-switch.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/audit-switch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/audit-switch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/audit-switch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/auditing.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/auditing.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/auditing.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/auditing.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/operation-audit.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/operation-audit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/operation-audit.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/operation-audit.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/user-and-permission-audit.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/user-and-permission-audit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/auditing/user-and-permission-audit.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/auditing/user-and-permission-audit.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/automatic-vacuuming.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/automatic-vacuuming.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/automatic-vacuuming.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/automatic-vacuuming.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/backend-compression.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/backend-compression.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/backend-compression.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/backend-compression.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/backup-and-restoration-parameter.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/backup-and-restoration-parameter.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/backup-and-restoration-parameter.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/backup-and-restoration-parameter.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/cm-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/cm-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/cm-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/cm-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/communication-library-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-and-authentication.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/connection-settings.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-and-authentication/security-and-authentication.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-pool-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-pool-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/connection-pool-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/connection-pool-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/default-settings-of-client-connection.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/other-default-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/statement-behavior.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/default-settings-of-client-connection/zone-and-formatting.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/developer-options.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/developer-options.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/developer-options.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/developer-options.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/error-reporting-and-logging.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-content.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-destination.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/logging-time.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/error-reporting-and-logging/using-csv-log-output.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/fault-tolerance.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/fault-tolerance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/fault-tolerance.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/fault-tolerance.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/file-location.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/file-location.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/file-location.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/file-location.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/flashback.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/flashback.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/flashback.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/flashback.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/global-syscache-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/global-syscache-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/global-syscache-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/global-syscache-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/global-temporary-table.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/global-temporary-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/global-temporary-table.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/global-temporary-table.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-list.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-list.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-list.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-list.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-usage.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-usage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-parameter-usage.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-parameter-usage.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-user-defined-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-user-defined-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/guc-user-defined-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/guc-user-defined-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/ha-replication.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/ha-replication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/ha-replication.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/ha-replication.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/primary-server.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/primary-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/primary-server.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/primary-server.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/sending-server.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/sending-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/sending-server.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/sending-server.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/standby-server.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/standby-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/ha-replication/standby-server.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/ha-replication/standby-server.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/huge-page-memory.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/huge-page-memory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/huge-page-memory.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/huge-page-memory.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/load-management.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/load-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/load-management.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/load-management.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/lock-management.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/lock-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/lock-management.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/lock-management.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/miscellaneous-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/miscellaneous-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/miscellaneous-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/miscellaneous-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/mot.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/mot.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/mot.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/mot.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/multi-level-cache-management-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/multi-level-cache-management-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/multi-level-cache-management-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/multi-level-cache-management-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/parameters-related-to-efficient-data-compression-algorithms.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/genetic-query-optimizer.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-cost-constants.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/optimizer-method-configuration.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/other-optimizer-options.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/other-optimizer-options.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/other-optimizer-options.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/other-optimizer-options.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/query-planning.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/query-planning.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query-planning/query-planning.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query-planning/query-planning.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/query.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/query.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/reference-guide-guc-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/reference-guide-guc-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/reference-guide-guc-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/reference-guide-guc-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/replication-parameters-of-two-database-instances.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/reserved-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/reserved-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/reserved-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/reserved-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/asynchronous-io-operations.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/background-writer.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/background-writer.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/background-writer.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/background-writer.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/cost-based-vacuum-delay.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/disk-space.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/disk-space.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/disk-space.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/disk-space.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/kernel-resource-usage.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/memory.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/memory.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/memory.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/memory.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/resource-consumption.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/resource-consumption.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-consumption/resource-consumption.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-consumption/resource-consumption.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-pooling-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-pooling-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/resource-pooling-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/resource-pooling-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/rollback-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/rollback-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/rollback-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/rollback-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/scheduled-task.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/scheduled-task.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/scheduled-task.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/scheduled-task.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/security-configuration.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/security-configuration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/security-configuration.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/security-configuration.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/performance-statistics.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/query-and-index-statistics-collector.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/statistics-during-the-database-running/statistics-during-the-database-running.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/system-performance-snapshot.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/system-performance-snapshot.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/system-performance-snapshot.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/system-performance-snapshot.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/thread-pool.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/thread-pool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/thread-pool.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/thread-pool.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/upgrade-parameters.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/upgrade-parameters.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/upgrade-parameters.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/upgrade-parameters.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/compatibility-with-earlier-versions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/platform-and-client-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/version-and-platform-compatibility/version-and-platform-compatibility.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/wait-events.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/wait-events.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/wait-events.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/wait-events.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/archiving.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/archiving.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/archiving.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/archiving.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/checkpoints.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/checkpoints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/checkpoints.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/checkpoints.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/log-replay.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/log-replay.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/settings.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/settings.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/settings.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/settings.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/write-ahead-log/write-ahead-log.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md b/product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md rename to product/zh/docs-mogdb/v6.0/reference-guide/guc-parameters/writer-statement-parameters-supported-by-standby-server.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/reference-guide.md b/product/zh/docs-mogdb/v6.0/reference-guide/reference-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/reference-guide.md rename to product/zh/docs-mogdb/v6.0/reference-guide/reference-guide.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.ARCHIVE_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.CREATE_SNAPSHOT_INTERNAL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.MANAGE_SNAPSHOT_INTERNAL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PREPARE_SNAPSHOT_INTERNAL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PUBLISH_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.PURGE_SNAPSHOT_INTERNAL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SAMPLE_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DB4AI-schema/DB4AI.SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/DBE_PERF.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/DBE_PERF.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/DBE_PERF.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/DBE_PERF.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/Cache-IO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STATIO_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_DB_CU.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/GLOBAL_STAT_SESSION_CU.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/STATIO_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/cache-io/SUMMARY_STATIO_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/CONFIG_SETTINGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/GLOBAL_CONFIG_SETTINGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/configuration.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/configuration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/configuration/configuration.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/configuration/configuration.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/FILE_REDO_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_FILE_REDO_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/GLOBAL_REL_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/LOCAL_REL_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_FILE_REDO_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/SUMMARY_REL_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/file.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/file.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/file/file.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/file/file.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_CLEAN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/GLOBAL_PLANCACHE_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/global-plancache/global-plancache.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/GLOBAL_INSTANCE_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/INSTANCE_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/instance.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/instance.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/instance/instance.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/instance/instance.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/GLOBAL_LOCKS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/LOCKS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/LOCKS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/LOCKS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/LOCKS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/lock.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/lock.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/lock/lock.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/lock/lock.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_MEMORY_NODE_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/GLOBAL_SHARED_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/MEMORY_NODE_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/memory-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/memory-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/memory/memory-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/memory/memory-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_BAD_BLOCK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_DATABASE_CONFLICTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/GLOBAL_STAT_XACT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_BAD_BLOCK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_DATABASE_CONFLICTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/STAT_XACT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_BAD_BLOCK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_DATABASE_CONFLICTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/SUMMARY_STAT_XACT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/object-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/object-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/object/object-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/object/object-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_HISTORY_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/GLOBAL_OPERATOR_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_HISTORY_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/OPERATOR_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/operator-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/operator-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/operator/operator-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/operator/operator-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/GLOBAL_OS_THREADS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_THREADS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_THREADS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/OS_THREADS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/OS_THREADS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/os-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/os-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/os/os-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/os/os-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_SLOW_QUERY_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_HISTORY_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COMPLEX_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GLOBAL_STATEMENT_COUNT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/GS_SLOW_QUERY_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_HISTORY_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COMPLEX_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_COUNT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_HISTORY_query.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_RESPONSETIME_PERCENTILE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/STATEMENT_WLMSTAT_COMPLEX_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/SUMMARY_STATEMENT_COUNT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/query-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/query-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/query/query-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/query/query-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/RTO-RPO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_rto_status.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_rto_status.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_rto_status.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_rto_status.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/global_streaming_hadr_rto_and_rpo_stat.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/rto/gs_hadr_local_rto_and_rpo_stat.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_STAT_ACTIVITY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_SESSION_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREADPOOL_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/GLOBAL_THREAD_WAIT_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_ACTIVE_SESSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/LOCAL_THREADPOOL_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_CPU_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_MEMORY_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_STAT_ACTIVITY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/SESSION_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/STATEMENT_IOSTAT_COMPLEX_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/THREAD_WAIT_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/session-thread.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/session-thread.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/session-thread/session-thread.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/session-thread/session-thread.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_PREPARED_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/GLOBAL_TRANSACTIONS_RUNNING_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_PREPARED_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/SUMMARY_TRANSACTIONS_RUNNING_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_PREPARED_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/TRANSACTIONS_RUNNING_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/transaction/transaction-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/BGWRITER_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/CLASS_VITAL_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_BGWRITER_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CANDIDATE_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_CKPT_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_DOUBLE_WRITE_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_GET_BGWRITER_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_PAGEWRITER_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECORD_RESET_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_RECOVERY_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REDO_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_SLOTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_REPLICATION_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/GLOBAL_SINGLE_FLUSH_DW_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_SLOTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/REPLICATION_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/SUMMARY_USER_LOGIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/USER_LOGIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/utility.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/utility.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/utility/utility.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/utility/utility.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/GLOBAL_WAIT_EVENTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/WAIT_EVENTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/wait-events/dbe-perf-wait-events.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_CONFIG.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/WLM_USER_RESOURCE_RUNTIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload-manager/workload-manager.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_USER_TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/GLOBAL_WORKLOAD_TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_COUNT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_SQL_ELAPSE_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/SUMMARY_WORKLOAD_TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/USER_TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_COUNT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_SQL_ELAPSE_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/WORKLOAD_TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/workload-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/workload-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PERF/workload/workload-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PERF/workload/workload-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.abort.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.add_breakpoint.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.attach.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.backtrace.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.continue.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.delete_breakpoint.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.disable_breakpoint.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.enable_breakpoint.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.finish.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_breakpoints.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_code.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.info_locals.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.local_debug_server_info.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.next.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.print_var.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.set_var.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.step.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_off.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEBUGGER-schema/DBE_PLDEBUGGER.turn_on.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_errors.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.gs_source.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_PLDEVELOPER/DBE_PLDEVELOPER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL-Schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_abort_sql_patch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.create_hint_sql_patch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.disable_sql_patch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.drop_sql_patch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.enable_sql_patch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/DBE_SQL_UTIL-Schema/DBE_SQL_UTIL.show_sql_patch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/INFORMATION_SCHEMA_CATALOG_NAME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_DATA_WRAPPERS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_SERVERS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_FOREIGN_TABLE_COLUMNS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/_PG_USER_MAPPINGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/information-schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/information-schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/information-schema/information-schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/information-schema/information-schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/schema/schema.md b/product/zh/docs-mogdb/v6.0/reference-guide/schema/schema.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/schema/schema.md rename to product/zh/docs-mogdb/v6.0/reference-guide/schema/schema.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/alias.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/alias.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/alias.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/alias.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-syntax.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/extended-syntax.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/extended-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes-introduction.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-indexes.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/gin-tips-and-tricks.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/implementation.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/implementation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/implementation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/implementation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/scalability.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/scalability.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/gin-indexes/scalability.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/gin-indexes/scalability.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/sql-reference-appendix.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/sql-reference-appendix.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/appendix/sql-reference-appendix.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/appendix/sql-reference-appendix.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/constant-and-macro.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/constant-and-macro.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/constant-and-macro.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/constant-and-macro.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/controlling-transactions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/controlling-transactions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/controlling-transactions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/controlling-transactions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/dcl-syntax-overview.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/dcl-syntax-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/dcl-syntax-overview.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/dcl-syntax-overview.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/ddl-syntax-overview.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/ddl-syntax-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/ddl-syntax-overview.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/ddl-syntax-overview.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/dml-syntax-overview.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/dml-syntax-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/dml-syntax-overview.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/dml-syntax-overview.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/array-expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/array-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/array-expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/array-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/condition-expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/condition-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/condition-expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/condition-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/row-expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/row-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/row-expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/row-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/simple-expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/simple-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/simple-expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/simple-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/subquery-expressions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/subquery-expressions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/expressions/subquery-expressions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/expressions/subquery-expressions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/additional-features.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/gathering-document-statistics.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-queries.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/manipulating-tsvector.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/additional-features/rewriting-queries.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/configuration-examples.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/configuration-examples.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/configuration-examples.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/configuration-examples.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/controlling-text-search.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/highlighting-results.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-documents.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/parsing-queries.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/controlling-text-search/ranking-search-results.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries-overview.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/dictionaries.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/ispell-dictionary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/simple-dictionary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/snowball-dictionary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/stop-words.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/synonym-dictionary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/dictionaries/thesaurus-dictionary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/full-text-search.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/full-text-search.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/full-text-search.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/full-text-search.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/basic-text-matching.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/configurations.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/configurations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/configurations.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/configurations.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-retrieval.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/full-text-search-introduction.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/introduction/what-is-a-document.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/limitations.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/limitations.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/limitations.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/limitations.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/parser.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/parser.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/parser.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/parser.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/constraints-on-index-use.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/creating-an-index.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/searching-a-table.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/tables-and-indexes/tables-and-indexes.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-configuration.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-dictionary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-a-parser.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/full-text-search/testing-and-debugging-text-search/testing-and-debugging-text-search.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-1.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-1.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-1.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-1.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-2.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-2.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords-2.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords-2.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/keywords/keywords.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/keywords/keywords.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/mogdb-sql.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/mogdb-sql.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/mogdb-sql.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/mogdb-sql.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/ordinary-table.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/ordinary-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/ordinary-table.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/ordinary-table.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/partition-table.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/partition-table.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-anonymous-block.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-anonymous-block.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-anonymous-block.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-anonymous-block.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-contraints.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-contraints.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-contraints.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-contraints.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-cursor.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-cursor.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-cursor.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-cursor.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-index.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-index.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-index.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-index.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-llvm.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-llvm.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-llvm.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-llvm.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-lock.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-lock.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-lock.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-lock.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-trigger.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-trigger.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference-trigger.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference-trigger.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-reference.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-reference.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-syntax-format.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-syntax-format.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sql-syntax-format.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sql-syntax-format.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sub-query.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sub-query.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/sub-query.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/sub-query.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/system-operation.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/system-operation.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/system-operation.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/system-operation.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/sql-reference-transaction.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/sql-reference-transaction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/sql-reference-transaction.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/sql-reference-transaction.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-control.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-control.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-control.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-control.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-management.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/transaction/transaction-management.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/transaction/transaction-management.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-base-value.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-base-value.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-base-value.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-base-value.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/functions.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/functions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/functions.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/functions.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/operators.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/operators.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/operators.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/operators.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion-overview.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion-overview.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion-overview.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/type-conversion.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/type-conversion.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/union-case-and-related-constructs.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/value-storage.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/value-storage.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/type-conversion/value-storage.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-reference/type-conversion/value-storage.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ABORT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ABORT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ABORT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ABORT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AGGREGATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AGGREGATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AGGREGATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AGGREGATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-AUDIT-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATA-SOURCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DEFAULT-PRIVILEGES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DIRECTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DIRECTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-DIRECTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-DIRECTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT-TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EVENT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EVENT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EXTENSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EXTENSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-EXTENSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-EXTENSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-DATA-WRAPPER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FOREIGN-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FUNCTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FUNCTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-FUNCTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-FUNCTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GLOBAL-CONFIGURATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GROUP.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GROUP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-GROUP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-GROUP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-INDEX.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-INDEX.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-INDEX.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-INDEX.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LANGUAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LANGUAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LANGUAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LANGUAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-LARGE-OBJECT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MASKING-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-MATERIALIZED-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-OPERATOR.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-OPERATOR.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-OPERATOR.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-OPERATOR.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PACKAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PACKAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PACKAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PACKAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PROCEDURE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PROCEDURE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PROCEDURE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PROCEDURE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PUBLICATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PUBLICATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-PUBLICATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-PUBLICATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-LABEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RESOURCE-POOL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-ROW-LEVEL-SECURITY-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RULE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RULE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-RULE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-RULE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SCHEMA.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SCHEMA.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SCHEMA.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SCHEMA.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SEQUENCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SEQUENCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SEQUENCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SEQUENCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SERVER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SERVER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SERVER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SERVER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SESSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SESSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SESSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SESSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SUBSCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYNONYM.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYNONYM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYNONYM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYNONYM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-KILL-SESSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-SYSTEM-SET.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-PARTITION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE-SUBPARTITION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLESPACE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLESPACE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TABLESPACE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TABLESPACE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-CONFIGURATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TEXT-SEARCH-DICTIONARY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TYPE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TYPE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-TYPE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-TYPE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER-MAPPING.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER-MAPPING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER-MAPPING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER-MAPPING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-USER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-USER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ALTER-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ALTER-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ANALYZE-ANALYSE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ANALYZE-ANALYSE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ANALYZE-ANALYSE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ANALYZE-ANALYSE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/BEGIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/BEGIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/BEGIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/BEGIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CALL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CALL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CALL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CALL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CHECKPOINT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CHECKPOINT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CHECKPOINT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CHECKPOINT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CLEAN-CONNECTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CLEAN-CONNECTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CLEAN-CONNECTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CLEAN-CONNECTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CLOSE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CLOSE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CLOSE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CLOSE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CLUSTER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CLUSTER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CLUSTER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CLUSTER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMENT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMENT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMENT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-END.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-END.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-END.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-END.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-PREPARED.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-PREPARED.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COMMIT-PREPARED.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COMMIT-PREPARED.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CONNECT-BY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CONNECT-BY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CONNECT-BY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CONNECT-BY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COPY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COPY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/COPY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/COPY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AGGREGATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AGGREGATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AGGREGATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AGGREGATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-AUDIT-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CAST.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CAST.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CAST.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CAST.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-CLIENT-MASTER-KEY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-COLUMN-ENCRYPTION-KEY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATA-SOURCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DIRECTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DIRECTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-DIRECTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-DIRECTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT-TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EVENT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EVENT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EXTENSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EXTENSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-EXTENSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-EXTENSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-DATA-WRAPPER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FOREIGN-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FUNCTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FUNCTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-FUNCTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-FUNCTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-GROUP.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-GROUP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-GROUP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-GROUP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INCREMENTAL-MATERIALIZED-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INDEX.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INDEX.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-INDEX.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-INDEX.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-LANGUAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-LANGUAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-LANGUAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-LANGUAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MASKING-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MATERIALIZED-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MODEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MODEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-MODEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-MODEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-OPERATOR.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-OPERATOR.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-OPERATOR.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-OPERATOR.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PACKAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PACKAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PACKAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PACKAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PROCEDURE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PROCEDURE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PROCEDURE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PROCEDURE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PUBLICATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PUBLICATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-PUBLICATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-PUBLICATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-LABEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RESOURCE-POOL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-ROW-LEVEL-SECURITY-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RULE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RULE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-RULE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-RULE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SCHEMA.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SCHEMA.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SCHEMA.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SCHEMA.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SEQUENCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SEQUENCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SEQUENCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SEQUENCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SERVER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SERVER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SERVER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SERVER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SUBSCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SYNONYM.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SYNONYM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-SYNONYM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-SYNONYM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-AS.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-AS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-AS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-AS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-PARTITION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE-SUBPARTITION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLESPACE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLESPACE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TABLESPACE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TABLESPACE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-CONFIGURATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TEXT-SEARCH-DICTIONARY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TYPE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TYPE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-TYPE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-TYPE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER-MAPPING.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER-MAPPING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER-MAPPING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER-MAPPING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-USER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-USER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CREATE-WEAK-PASSWORD-DICTIONARY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CURSOR.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CURSOR.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/CURSOR.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/CURSOR.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DEALLOCATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DEALLOCATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DEALLOCATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DEALLOCATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DECLARE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DECLARE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DECLARE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DECLARE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DELETE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DELETE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DELETE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DELETE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DELIMITER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DELIMITER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DELIMITER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DELIMITER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DO.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AGGREGATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AGGREGATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AGGREGATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AGGREGATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-AUDIT-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CAST.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CAST.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CAST.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CAST.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-CLIENT-MASTER-KEY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-COLUMN-ENCRYPTION-KEY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATA-SOURCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATA-SOURCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATA-SOURCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATA-SOURCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DIRECTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DIRECTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-DIRECTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-DIRECTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT-TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EVENT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EVENT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EXTENSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EXTENSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-EXTENSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-EXTENSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-DATA-WRAPPER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FOREIGN-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FUNCTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FUNCTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-FUNCTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-FUNCTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GLOBAL-CONFIGURATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GROUP.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GROUP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-GROUP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-GROUP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-INDEX.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-INDEX.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-INDEX.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-INDEX.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-LANGUAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-LANGUAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-LANGUAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-LANGUAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MASKING-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MASKING-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MASKING-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MASKING-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MATERIALIZED-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MODEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MODEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-MODEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-MODEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OPERATOR.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OPERATOR.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OPERATOR.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OPERATOR.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OWNED.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OWNED.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-OWNED.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-OWNED.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PACKAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PACKAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PACKAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PACKAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PROCEDURE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PROCEDURE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PROCEDURE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PROCEDURE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PUBLICATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PUBLICATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-PUBLICATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-PUBLICATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-LABEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RESOURCE-POOL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-ROW-LEVEL-SECURITY-POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RULE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RULE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-RULE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-RULE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SCHEMA.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SCHEMA.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SCHEMA.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SCHEMA.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SEQUENCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SEQUENCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SEQUENCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SEQUENCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SERVER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SERVER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SERVER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SERVER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SUBSCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SYNONYM.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SYNONYM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-SYNONYM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-SYNONYM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLESPACE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLESPACE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TABLESPACE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TABLESPACE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-CONFIGURATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TEXT-SEARCH-DICTIONARY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TYPE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TYPE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-TYPE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-TYPE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER-MAPPING.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER-MAPPING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER-MAPPING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER-MAPPING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-USER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-USER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/DROP-WEAK-PASSWORD-DICTIONARY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE-DIRECT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE-DIRECT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE-DIRECT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE-DIRECT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXECUTE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXECUTE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN-PLAN.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN-PLAN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN-PLAN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN-PLAN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/EXPLAIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/EXPLAIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/FETCH.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/FETCH.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/FETCH.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/FETCH.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/GRANT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/GRANT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/GRANT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/GRANT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/INSERT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/INSERT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/INSERT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/INSERT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/LOCK.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/LOCK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/LOCK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/LOCK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/MERGE-INTO.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/MERGE-INTO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/MERGE-INTO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/MERGE-INTO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/MOVE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/MOVE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/MOVE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/MOVE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PREDICT-BY.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PREDICT-BY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PREDICT-BY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PREDICT-BY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE-TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE-TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE-TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE-TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PREPARE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PREPARE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PURGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PURGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/PURGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/PURGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REASSIGN-OWNED.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REASSIGN-OWNED.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REASSIGN-OWNED.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REASSIGN-OWNED.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-INCREMENTAL-MATERIALIZED-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REFRESH-MATERIALIZED-VIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REINDEX.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REINDEX.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REINDEX.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REINDEX.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/RELEASE-SAVEPOINT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/RESET.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/RESET.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/RESET.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/RESET.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REVOKE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REVOKE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/REVOKE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/REVOKE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-PREPARED.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-PREPARED.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-PREPARED.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-PREPARED.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK-TO-SAVEPOINT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/ROLLBACK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/ROLLBACK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SAVEPOINT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SAVEPOINT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SAVEPOINT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SAVEPOINT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT-INTO.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT-INTO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT-INTO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT-INTO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SELECT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SELECT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-CONSTRAINTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-CONSTRAINTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-CONSTRAINTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-CONSTRAINTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-ROLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-ROLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-ROLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-ROLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-SESSION-AUTHORIZATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET-TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET-TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SET.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SET.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW-EVENTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW-EVENTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW-EVENTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW-EVENTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHOW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHOW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHRINK.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHRINK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHRINK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHRINK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHUTDOWN.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHUTDOWN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SHUTDOWN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SHUTDOWN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/START-TRANSACTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/START-TRANSACTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/START-TRANSACTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/START-TRANSACTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/TIMECAPSULE-TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/TRUNCATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/TRUNCATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/TRUNCATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/TRUNCATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/UPDATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/UPDATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/UPDATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/UPDATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/VACUUM.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/VACUUM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/VACUUM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/VACUUM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/VALUES.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/VALUES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/VALUES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/VALUES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/sql-syntax.md b/product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/sql-syntax.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/sql-syntax/sql-syntax.md rename to product/zh/docs-mogdb/v6.0/reference-guide/sql-syntax/sql-syntax.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/HLL.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/HLL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/HLL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/HLL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/binary-data-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/binary-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/binary-data-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/binary-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/bit-string-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/bit-string-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/bit-string-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/bit-string-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/boolean-data-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/boolean-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/boolean-data-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/boolean-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/character-data-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/character-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/character-data-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/character-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/data-type-used-by-the-ledger-database.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/data-types-supported-by-column-store-tables.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/date-time-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/date-time-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/date-time-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/date-time-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/geometric.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/geometric.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/geometric.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/geometric.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/json-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/json-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/json-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/json-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/monetary.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/monetary.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/monetary.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/monetary.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/network-address.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/network-address.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/network-address.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/network-address.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/numeric-data-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/numeric-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/numeric-data-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/numeric-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/object-identifier-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/object-identifier-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/object-identifier-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/object-identifier-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/pseudo-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/pseudo-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/pseudo-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/pseudo-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/range.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/range.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/range.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/range.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/set-type.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/set-type.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/set-type.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/set-type.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/supported-data-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/supported-data-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/supported-data-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/supported-data-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/text-search-types.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/text-search-types.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/text-search-types.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/text-search-types.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/uuid-type.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/uuid-type.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/uuid-type.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/uuid-type.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/xml-type.md b/product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/xml-type.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/supported-data-types/xml-type.md rename to product/zh/docs-mogdb/v6.0/reference-guide/supported-data-types/xml-type.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/overview-of-system-catalogs-and-system-views.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs-and-system-views.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ASP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_ACCESS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_FILTERS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_AUDITING_POLICY_PRIVILEGES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_CLIENT_GLOBAL_KEYS_ARGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_COLUMN_KEYS_ARGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_DB_PRIVILEGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_COLUMNS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_ENCRYPTED_PROC.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CHAIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_GLOBAL_CONFIG.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_ACTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MASKING_POLICY_FILTERS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MATVIEW_DEPENDENCY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_MODEL_WAREHOUSE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_OPT_MODEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_PACKAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_POLICY_LABEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_RECYCLEBIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_TXN_SNAPSHOT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_UID.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_EC_OPERATOR_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_INSTANCE_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_OPERATOR_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_ENCODING_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_PLAN_OPERATOR_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_SESSION_QUERY_INFO_ALL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/GS_WLM_USER_RESOURCE_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_CLASS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_GROUP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_NODE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PGXC_SLICE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AGGREGATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMOP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AMPROC.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_APP_WORKLOADGROUP_MAPPING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRDEF.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ATTRIBUTE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTHID.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_AUTH_MEMBERS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CAST.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CLASS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_COLLATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONSTRAINT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_CONVERSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DB_ROLE_SETTING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEFAULT_ACL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DEPEND.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DESCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_DIRECTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_ENUM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EVENT_TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_EXTENSION_DATA_SOURCE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_DATA_WRAPPER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_SERVER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_FOREIGN_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_HASHBUCKET.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INDEX.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_INHERITS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_JOB_PROC.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LANGUAGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_LARGEOBJECT_METADATA.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_NAMESPACE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OBJECT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPCLASS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPERATOR.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_OPFAMILY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PARTITION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PLTEMPLATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PROC.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_PUBLICATION_REL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RANGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REPLICATION_ORIGIN.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RESOURCE_POOL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_REWRITE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_RLSPOLICY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SECLABEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SET.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDEPEND.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHDESCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SHSECLABEL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_STATISTIC_EXT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SUBSCRIPTION_REL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_SYNONYM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TABLESPACE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TRIGGER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_CONFIG_MAP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_DICT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_PARSER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TS_TEMPLATE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_TYPE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_MAPPING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_USER_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PG_WORKLOAD_GROUP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/PLAN_TABLE_DATA.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/STATEMENT_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-catalogs/system-catalogs.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GET_GLOBAL_PREPARED_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_ASYNC_SUBMIT_SESSIONS_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_ACCESS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_AUDITING_PRIVILEGE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_CLUSTER_RESOURCE_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_COMPRESSION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_DB_PRIVILEGES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_FILE_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_GSC_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_INSTANCE_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LABELS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_LSC_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MASKING.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_MATVIEWS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_OS_RUN_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_REDO_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_CPU_STATISTICS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_CONTEXT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_MEMORY_STATISTICS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_STAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SESSION_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SHARED_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SHARED_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SHARED_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SHARED_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_SQL_COUNT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_STAT_SESSION_CU.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_THREAD_MEMORY_CONTEXT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_TOTAL_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_CGROUP_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_EC_OPERATOR_STATISTICS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_OPERATOR_STATISTICS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_PLAN_OPERATOR_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_REBUILD_USER_RESOURCE_POOL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_RESOURCE_POOL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_HISTORY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_INFO_ALL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_SESSION_STATISTICS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/GS_WLM_USER_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/IOS_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/IOS_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/IOS_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/IOS_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/MPP_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PGXC_PREPARED_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_AVAILABLE_EXTENSION_VERSIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_DELAY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_RECV_STREAM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_SEND_STREAM.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_COMM_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CONTROL_GROUP_CONFIG.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_CURSORS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_EXT_STATS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_INVALID_BACKENDS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GET_SENDERS_CATCHUP_TIME.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GROUP.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_ATTACHED_PIDS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_RELSTATS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_GTT_STATS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_LOCKS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_NODE_ENV.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_OS_THREADS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_STATEMENTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PREPARED_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_PUBLICATION_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_ORIGIN_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_REPLICATION_SLOTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RLSPOLICIES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_ROLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RULES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_RUNNING_XACTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SECLABELS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_IOSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SESSION_WLMSTAT.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SETTINGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_SHADOW.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_SEQUENCES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATIO_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STATS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ACTIVITY_NG.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BAD_BLOCK.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_BGWRITER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_DATABASE_CONFLICTS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_REPLICATION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SUBSCRIPTION.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_INDEXES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_ALL_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_SYS_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_FUNCTIONS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_STAT_XACT_USER_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TABLES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TDE_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_THREAD_WAIT_STATUS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_ABBREVS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TIMEZONE_NAMES.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_MEMORY_DETAIL.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_TOTAL_USER_RESOURCE_INFO_OID.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_USER_MAPPINGS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VARIABLE_INFO.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_VIEWS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PG_WLM_STATISTICS.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/PLAN_TABLE.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/system-views.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/system-views.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/system-views/system-views.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/system-views/system-views.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md b/product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md rename to product/zh/docs-mogdb/v6.0/reference-guide/system-catalogs-and-system-views/viewing-system-catalogs.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/FAQ.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/FAQ.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/FAQ.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/FAQ.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/client-tool.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/client-tool.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/client-tool.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/client-tool.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/client-tool-gsql.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/command-reference.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/command-reference.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-faq.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/gsql-introduction.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/meta-command-reference.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/obtaining-help-information.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/client-tool/gsql/usage-guidelines.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/functions-of-mogdb-executable-scripts.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_cgroup.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_cgroup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_cgroup.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_cgroup.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_check.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_check.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_check.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_check.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkos.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkos.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkos.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkos.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkperf.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkperf.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_checkperf.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_checkperf.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_collector.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_collector.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_collector.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_collector.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dump.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dump.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dump.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dump.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dumpall.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dumpall.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_dumpall.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_dumpall.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_encrypt.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_encrypt.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_encrypt.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_encrypt.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_guc.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_guc.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_guc.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_guc.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_om.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_om.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_om.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_om.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_plan_simulator.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_plan_simulator.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_plan_simulator.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_plan_simulator.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_restore.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_restore.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_restore.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_restore.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_sdr.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_sdr.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_sdr.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_sdr.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_ssh.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_ssh.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_ssh.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_ssh.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_watch.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_watch.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/gs_watch.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/gs_watch.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/server-tools.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/server-tools.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/server-tools/server-tools.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/server-tools/server-tools.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/system-catalogs-and-views-supported-by-gs_collector.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tool-overview.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tool-overview.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tool-overview.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tool-overview.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tool-reference.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tool-reference.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tool-reference.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tool-reference.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dsscmd.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/dssserver.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_backup.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_basebackup.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_ctl.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_dropnode.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_expansion.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_initdb.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_install.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_postuninstall.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_preinstall.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_probackup.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_sshexkey.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_tar.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_uninstall.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradechk.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradechk.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradechk.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradechk.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gs_upgradectl.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kadmin-local.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdb5_util.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kdestroy.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/kinit.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/klist.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/krb5kdc.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/mogdb.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_archivecleanup.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_config.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_controldata.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_recvlogical.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pg_resetxlog.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pscp.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/pssh.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/tools-used-in-the-internal-system.md diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md b/product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md rename to product/zh/docs-mogdb/v6.0/reference-guide/tool-reference/tools-used-in-the-internal-system/transfer.py.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security-guide.md b/product/zh/docs-mogdb/v6.0/security-guide/security-guide.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security-guide.md rename to product/zh/docs-mogdb/v6.0/security-guide/security-guide.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/1-client-access-authentication.md b/product/zh/docs-mogdb/v6.0/security-guide/security/1-client-access-authentication.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/1-client-access-authentication.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/1-client-access-authentication.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/2-managing-users-and-their-permissions.md b/product/zh/docs-mogdb/v6.0/security-guide/security/2-managing-users-and-their-permissions.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/2-managing-users-and-their-permissions.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/2-managing-users-and-their-permissions.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/3-configuring-database-audit.md b/product/zh/docs-mogdb/v6.0/security-guide/security/3-configuring-database-audit.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/3-configuring-database-audit.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/3-configuring-database-audit.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/4-setting-encrypted-equality-query.md b/product/zh/docs-mogdb/v6.0/security-guide/security/4-setting-encrypted-equality-query.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/4-setting-encrypted-equality-query.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/4-setting-encrypted-equality-query.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/5-setting-a-ledger-database.md b/product/zh/docs-mogdb/v6.0/security-guide/security/5-setting-a-ledger-database.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/5-setting-a-ledger-database.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/5-setting-a-ledger-database.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/6-transparent-data-encryption.md b/product/zh/docs-mogdb/v6.0/security-guide/security/6-transparent-data-encryption.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/6-transparent-data-encryption.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/6-transparent-data-encryption.md diff --git a/product/zh/docs-mogdb/v5.1/security-guide/security/database-security-management.md b/product/zh/docs-mogdb/v6.0/security-guide/security/database-security-management.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/security-guide/security/database-security-management.md rename to product/zh/docs-mogdb/v6.0/security-guide/security/database-security-management.md diff --git a/product/zh/docs-mogdb/v5.1/source-code-parsing.md b/product/zh/docs-mogdb/v6.0/source-code-parsing.md similarity index 100% rename from product/zh/docs-mogdb/v5.1/source-code-parsing.md rename to product/zh/docs-mogdb/v6.0/source-code-parsing.md diff --git a/product/zh/docs-mogdb/v5.1/toc.md b/product/zh/docs-mogdb/v6.0/toc.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc.md rename to product/zh/docs-mogdb/v6.0/toc.md index 06dea2d1..7cda666a 100644 --- a/product/zh/docs-mogdb/v5.1/toc.md +++ b/product/zh/docs-mogdb/v6.0/toc.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## Documentation List diff --git a/product/zh/docs-mogdb/v5.1/toc_about.md b/product/zh/docs-mogdb/v6.0/toc_about.md similarity index 95% rename from product/zh/docs-mogdb/v5.1/toc_about.md rename to product/zh/docs-mogdb/v6.0/toc_about.md index acbdc0bd..566f1530 100644 --- a/product/zh/docs-mogdb/v5.1/toc_about.md +++ b/product/zh/docs-mogdb/v6.0/toc_about.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 关于MogDB diff --git a/product/zh/docs-mogdb/v5.1/toc_ai-features.md b/product/zh/docs-mogdb/v6.0/toc_ai-features.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_ai-features.md rename to product/zh/docs-mogdb/v6.0/toc_ai-features.md index 8df26127..a51ff6be 100644 --- a/product/zh/docs-mogdb/v5.1/toc_ai-features.md +++ b/product/zh/docs-mogdb/v6.0/toc_ai-features.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## AI特性指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_characteristic_description.md b/product/zh/docs-mogdb/v6.0/toc_characteristic_description.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_characteristic_description.md rename to product/zh/docs-mogdb/v6.0/toc_characteristic_description.md index 8b1599eb..0a8ba2ce 100644 --- a/product/zh/docs-mogdb/v5.1/toc_characteristic_description.md +++ b/product/zh/docs-mogdb/v6.0/toc_characteristic_description.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 特性描述 diff --git a/product/zh/docs-mogdb/v5.1/toc_common-faults-and-identification.md b/product/zh/docs-mogdb/v6.0/toc_common-faults-and-identification.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_common-faults-and-identification.md rename to product/zh/docs-mogdb/v6.0/toc_common-faults-and-identification.md index 7e26cfaa..b638b080 100644 --- a/product/zh/docs-mogdb/v5.1/toc_common-faults-and-identification.md +++ b/product/zh/docs-mogdb/v6.0/toc_common-faults-and-identification.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 故障诊断 diff --git a/product/zh/docs-mogdb/v5.1/toc_communication-matrix.md b/product/zh/docs-mogdb/v6.0/toc_communication-matrix.md similarity index 69% rename from product/zh/docs-mogdb/v5.1/toc_communication-matrix.md rename to product/zh/docs-mogdb/v6.0/toc_communication-matrix.md index bcf843be..e5e8e3be 100644 --- a/product/zh/docs-mogdb/v5.1/toc_communication-matrix.md +++ b/product/zh/docs-mogdb/v6.0/toc_communication-matrix.md @@ -1,4 +1,4 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 通信矩阵 diff --git a/product/zh/docs-mogdb/v5.1/toc_datatypes-and-sql.md b/product/zh/docs-mogdb/v6.0/toc_datatypes-and-sql.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_datatypes-and-sql.md rename to product/zh/docs-mogdb/v6.0/toc_datatypes-and-sql.md index f501f195..fccf72ad 100644 --- a/product/zh/docs-mogdb/v5.1/toc_datatypes-and-sql.md +++ b/product/zh/docs-mogdb/v6.0/toc_datatypes-and-sql.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 数据类型及SQL diff --git a/product/zh/docs-mogdb/v5.1/toc_dev.md b/product/zh/docs-mogdb/v6.0/toc_dev.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_dev.md rename to product/zh/docs-mogdb/v6.0/toc_dev.md index 99d56c8a..2bc428bc 100644 --- a/product/zh/docs-mogdb/v5.1/toc_dev.md +++ b/product/zh/docs-mogdb/v6.0/toc_dev.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 开发者指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_error.md b/product/zh/docs-mogdb/v6.0/toc_error.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_error.md rename to product/zh/docs-mogdb/v6.0/toc_error.md index d7047a97..5f1fc2d5 100644 --- a/product/zh/docs-mogdb/v5.1/toc_error.md +++ b/product/zh/docs-mogdb/v6.0/toc_error.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 数据库报错信息 diff --git a/product/zh/docs-mogdb/v5.1/toc_extension-referecne.md b/product/zh/docs-mogdb/v6.0/toc_extension-referecne.md similarity index 98% rename from product/zh/docs-mogdb/v5.1/toc_extension-referecne.md rename to product/zh/docs-mogdb/v6.0/toc_extension-referecne.md index 465fbeed..b5c69ae8 100644 --- a/product/zh/docs-mogdb/v5.1/toc_extension-referecne.md +++ b/product/zh/docs-mogdb/v6.0/toc_extension-referecne.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 插件指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_faqs.md b/product/zh/docs-mogdb/v6.0/toc_faqs.md similarity index 93% rename from product/zh/docs-mogdb/v5.1/toc_faqs.md rename to product/zh/docs-mogdb/v6.0/toc_faqs.md index 9c779021..e308bb77 100644 --- a/product/zh/docs-mogdb/v5.1/toc_faqs.md +++ b/product/zh/docs-mogdb/v6.0/toc_faqs.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 常见问题解答 (FAQs) diff --git a/product/zh/docs-mogdb/v5.1/toc_glossary.md b/product/zh/docs-mogdb/v6.0/toc_glossary.md similarity index 62% rename from product/zh/docs-mogdb/v5.1/toc_glossary.md rename to product/zh/docs-mogdb/v6.0/toc_glossary.md index e490f3b0..c0658387 100644 --- a/product/zh/docs-mogdb/v5.1/toc_glossary.md +++ b/product/zh/docs-mogdb/v6.0/toc_glossary.md @@ -1,4 +1,4 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 术语表 diff --git a/product/zh/docs-mogdb/v5.1/toc_high_available.md b/product/zh/docs-mogdb/v6.0/toc_high_available.md similarity index 97% rename from product/zh/docs-mogdb/v5.1/toc_high_available.md rename to product/zh/docs-mogdb/v6.0/toc_high_available.md index c54104e5..49d54827 100644 --- a/product/zh/docs-mogdb/v5.1/toc_high_available.md +++ b/product/zh/docs-mogdb/v6.0/toc_high_available.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 高可用指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_install.md b/product/zh/docs-mogdb/v6.0/toc_install.md similarity index 96% rename from product/zh/docs-mogdb/v5.1/toc_install.md rename to product/zh/docs-mogdb/v6.0/toc_install.md index eae13bcf..706d9dd9 100644 --- a/product/zh/docs-mogdb/v5.1/toc_install.md +++ b/product/zh/docs-mogdb/v6.0/toc_install.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 安装指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_manage.md b/product/zh/docs-mogdb/v6.0/toc_manage.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_manage.md rename to product/zh/docs-mogdb/v6.0/toc_manage.md index 275892ac..6dc5381f 100644 --- a/product/zh/docs-mogdb/v5.1/toc_manage.md +++ b/product/zh/docs-mogdb/v6.0/toc_manage.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 管理指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_parameters-and-tools.md b/product/zh/docs-mogdb/v6.0/toc_parameters-and-tools.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_parameters-and-tools.md rename to product/zh/docs-mogdb/v6.0/toc_parameters-and-tools.md index c1f7a6b0..4f35ca49 100644 --- a/product/zh/docs-mogdb/v5.1/toc_parameters-and-tools.md +++ b/product/zh/docs-mogdb/v6.0/toc_parameters-and-tools.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 参数及工具 diff --git a/product/zh/docs-mogdb/v5.1/toc_performance.md b/product/zh/docs-mogdb/v6.0/toc_performance.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_performance.md rename to product/zh/docs-mogdb/v6.0/toc_performance.md index 0a4e89b1..44e3f519 100644 --- a/product/zh/docs-mogdb/v5.1/toc_performance.md +++ b/product/zh/docs-mogdb/v6.0/toc_performance.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 性能优化指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_quickstart.md b/product/zh/docs-mogdb/v6.0/toc_quickstart.md similarity index 98% rename from product/zh/docs-mogdb/v5.1/toc_quickstart.md rename to product/zh/docs-mogdb/v6.0/toc_quickstart.md index c7d17b55..1d2e77d3 100644 --- a/product/zh/docs-mogdb/v5.1/toc_quickstart.md +++ b/product/zh/docs-mogdb/v6.0/toc_quickstart.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 快速入门 diff --git a/product/zh/docs-mogdb/v5.1/toc_secure.md b/product/zh/docs-mogdb/v6.0/toc_secure.md similarity index 96% rename from product/zh/docs-mogdb/v5.1/toc_secure.md rename to product/zh/docs-mogdb/v6.0/toc_secure.md index d6c3de0a..ed43e09d 100644 --- a/product/zh/docs-mogdb/v5.1/toc_secure.md +++ b/product/zh/docs-mogdb/v6.0/toc_secure.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 安全指南 diff --git a/product/zh/docs-mogdb/v5.1/toc_system-catalogs-and-functions.md b/product/zh/docs-mogdb/v6.0/toc_system-catalogs-and-functions.md similarity index 99% rename from product/zh/docs-mogdb/v5.1/toc_system-catalogs-and-functions.md rename to product/zh/docs-mogdb/v6.0/toc_system-catalogs-and-functions.md index b7bd45c2..9e4e2fa9 100644 --- a/product/zh/docs-mogdb/v5.1/toc_system-catalogs-and-functions.md +++ b/product/zh/docs-mogdb/v6.0/toc_system-catalogs-and-functions.md @@ -1,7 +1,7 @@ -# MogDB Documentation 5.1 +# MogDB Documentation 6.0 ## 系统表及函数 -- Gitee From 788958eb288462ff288181fa1e8e1687764638ad Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Mon, 13 May 2024 15:04:51 +0800 Subject: [PATCH 4/5] fix(mogdb):links --- .../high-available-guide/cluster-management/safety-design.md | 2 +- .../v6.0/characteristic-description/high-availability/13-dcf.md | 2 +- .../high-availability-based-on-the-paxos-protocol.md | 2 +- .../maintainability/dcf-module-tracing.md | 2 +- .../high-available-guide/cluster-management/safety-design.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/product/en/docs-mogdb/v5.0/high-available-guide/cluster-management/safety-design.md b/product/en/docs-mogdb/v5.0/high-available-guide/cluster-management/safety-design.md index eb3bf459..6a774a3b 100644 --- a/product/en/docs-mogdb/v5.0/high-available-guide/cluster-management/safety-design.md +++ b/product/en/docs-mogdb/v5.0/high-available-guide/cluster-management/safety-design.md @@ -11,7 +11,7 @@ date: 2022-11-11 - Create a self-signed certificate. - For details about how to create a self-signed certificate, see [Generating Certificates](../../../security-guide/security/1-client-access-authentication.md#generating-certificates). + For details about how to create a self-signed certificate, see [Generating Certificates](../../security-guide/security/1-client-access-authentication.md#generating-certificates). To protect the private key password, use the **cm encrypt** tool. For details, see [Introduction to the cm_ctl Tool](introduction-to-cm_ctl-tool.md). diff --git a/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md index ce832288..92205dea 100644 --- a/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md +++ b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/13-dcf.md @@ -51,4 +51,4 @@ None. ## Related Pages -[DCF](../../reference-guide/sql-reference/sql-reference-dcf.md) \ No newline at end of file +[DCF](../../high-available-guide/high-available-dcf.md) \ No newline at end of file diff --git a/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md index f873358c..e2f34624 100644 --- a/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md +++ b/product/en/docs-mogdb/v6.0/characteristic-description/high-availability/high-availability-based-on-the-paxos-protocol.md @@ -38,4 +38,4 @@ None. ## Related Pages -[DCF](../../reference-guide/sql-reference/sql-reference-dcf.md) \ No newline at end of file +[DCF](../../high-available-guide/high-available-dcf.md) \ No newline at end of file diff --git a/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md index 16115bff..9c3d8a37 100644 --- a/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md +++ b/product/en/docs-mogdb/v6.0/characteristic-description/maintainability/dcf-module-tracing.md @@ -31,4 +31,4 @@ DCF mode needs to be enabled, i.e. set the `enable_dcf` parameter value to on. ## Related Pages -[gstrace](../../reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md), [enable_dcf](../../reference-guide/guc-parameters/DCF-parameters-settings.md#enable_dcf), [DCF](../../reference-guide/sql-reference/sql-reference-dcf.md) \ No newline at end of file +[gstrace](../../reference-guide/tool-reference/tools-used-in-the-internal-system/gstrace.md), [enable_dcf](../../reference-guide/guc-parameters/DCF-parameters-settings.md#enable_dcf), [DCF](../../high-available-guide/high-available-dcf.md) \ No newline at end of file diff --git a/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md index eb3bf459..6a774a3b 100644 --- a/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md +++ b/product/en/docs-mogdb/v6.0/high-available-guide/cluster-management/safety-design.md @@ -11,7 +11,7 @@ date: 2022-11-11 - Create a self-signed certificate. - For details about how to create a self-signed certificate, see [Generating Certificates](../../../security-guide/security/1-client-access-authentication.md#generating-certificates). + For details about how to create a self-signed certificate, see [Generating Certificates](../../security-guide/security/1-client-access-authentication.md#generating-certificates). To protect the private key password, use the **cm encrypt** tool. For details, see [Introduction to the cm_ctl Tool](introduction-to-cm_ctl-tool.md). -- Gitee From 8d04e52014b2843160f3553e01966af7157ed302 Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Mon, 13 May 2024 15:49:09 +0800 Subject: [PATCH 5/5] =?UTF-8?q?fix(mogdb):build=5Fpdf.sh=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E9=AB=98=E5=8F=AF=E7=94=A8=E6=8C=87=E5=8D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/build_pdf.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build_pdf.sh b/scripts/build_pdf.sh index f2f5e958..4a345488 100755 --- a/scripts/build_pdf.sh +++ b/scripts/build_pdf.sh @@ -104,6 +104,7 @@ declare -A mogdbZn210Title=( \ ["toc_system-catalogs-and-functions"]="MogDB-数据库系统表及函数指南" \ ["toc_dev"]="MogDB-数据库开发者指南" \ ["toc_extension-referecne"]="MogDB-数据库插件指南" \ + ["toc_high_available"]="MogDB-高可用指南" \ ) declare -A mogdbEn210Title=( \ ["toc_parameters-and-tools"]="MogDB-Database-Parameter-and-Tool-Reference" \ @@ -120,6 +121,7 @@ declare -A mogdbEn210Title=( \ ["toc_system-catalogs-and-functions"]="MogDB-Database-System-View-and-Function-Reference" \ ["toc_dev"]="MogDB-Database-Developer-Guide" \ ["toc_extension-referecne"]="MogDB-Database-Extension-Reference" \ + ["toc_high_available"]="MogDB-Database-High-Available-Guide" \ ) scaDocsVersions=("v5.0" "v5.1") -- Gitee