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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7698cbcbca [doc](duplicate) Fix Doc Spelling Mistake (#802)
7698cbcbca is described below

commit 7698cbcbca25f74426e0b00715ac224888be8204
Author: Wanghuan <imnu205...@126.com>
AuthorDate: Mon Jul 1 11:54:07 2024 +0800

    [doc](duplicate) Fix Doc Spelling Mistake (#802)
    
    Co-authored-by: Luzhijing <82810928+luzhij...@users.noreply.github.com>
---
 .../current/table-design/data-model/duplicate.md                  | 8 ++++----
 .../version-2.0/table-design/data-model/duplicate.md              | 8 ++++----
 .../version-2.1/table-design/data-model/duplicate.md              | 8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/table-design/data-model/duplicate.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/table-design/data-model/duplicate.md
index 4571730cc5..042b493270 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/table-design/data-model/duplicate.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/table-design/data-model/duplicate.md
@@ -24,11 +24,11 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-明细模型,也成为 Duplicate 数据模型。
+明细模型,也称为 Duplicate 数据模型。
 
 在某些多维分析场景下,数据既没有主键,也没有聚合需求。针对这种需求,可以使用明细数据模型。
 
-在明细数据模型中,数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 DUPLICATE 
KEY,只是用来指明数据存储按照哪些列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 列即可。
+在明细数据模型中,数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 Duplicate 
Key,只是用来指明数据存储按照哪些列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 列即可。
 
 举例如下,一个表有如下的数据列,没有主键更新和基于聚合键的聚合需求。
 
@@ -116,7 +116,7 @@ MySQL > desc example_tbl_duplicate_without_keys_by_default;
 
 ## 指定排序列的明细模型
 
-在建表语句中指定 DUPLICATE KEY,用来指明数据存储按照这些 Key 列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 
列即可。
+在建表语句中指定 Duplicate Key,用来指明数据存储按照这些 Key 列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 
列即可。
 
 建表语句举例如下,指定了按照 timestamp、type 和 error_code 三列进行排序。
 
@@ -150,4 +150,4 @@ MySQL > desc example_tbl_duplicate;
 6 rows in set (0.01 sec)
 ```
 
-数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 DUPLICATE 
KEY,只是用来指明数据存储按照哪些列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 列即可。
\ No newline at end of file
+数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 Duplicate 
Key,只是用来指明数据存储按照哪些列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 列即可。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/table-design/data-model/duplicate.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/table-design/data-model/duplicate.md
index 4571730cc5..042b493270 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/table-design/data-model/duplicate.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/table-design/data-model/duplicate.md
@@ -24,11 +24,11 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-明细模型,也成为 Duplicate 数据模型。
+明细模型,也称为 Duplicate 数据模型。
 
 在某些多维分析场景下,数据既没有主键,也没有聚合需求。针对这种需求,可以使用明细数据模型。
 
-在明细数据模型中,数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 DUPLICATE 
KEY,只是用来指明数据存储按照哪些列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 列即可。
+在明细数据模型中,数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 Duplicate 
Key,只是用来指明数据存储按照哪些列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 列即可。
 
 举例如下,一个表有如下的数据列,没有主键更新和基于聚合键的聚合需求。
 
@@ -116,7 +116,7 @@ MySQL > desc example_tbl_duplicate_without_keys_by_default;
 
 ## 指定排序列的明细模型
 
-在建表语句中指定 DUPLICATE KEY,用来指明数据存储按照这些 Key 列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 
列即可。
+在建表语句中指定 Duplicate Key,用来指明数据存储按照这些 Key 列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 
列即可。
 
 建表语句举例如下,指定了按照 timestamp、type 和 error_code 三列进行排序。
 
@@ -150,4 +150,4 @@ MySQL > desc example_tbl_duplicate;
 6 rows in set (0.01 sec)
 ```
 
-数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 DUPLICATE 
KEY,只是用来指明数据存储按照哪些列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 列即可。
\ No newline at end of file
+数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 Duplicate 
Key,只是用来指明数据存储按照哪些列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 列即可。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/table-design/data-model/duplicate.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/table-design/data-model/duplicate.md
index 4571730cc5..042b493270 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/table-design/data-model/duplicate.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/table-design/data-model/duplicate.md
@@ -24,11 +24,11 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-明细模型,也成为 Duplicate 数据模型。
+明细模型,也称为 Duplicate 数据模型。
 
 在某些多维分析场景下,数据既没有主键,也没有聚合需求。针对这种需求,可以使用明细数据模型。
 
-在明细数据模型中,数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 DUPLICATE 
KEY,只是用来指明数据存储按照哪些列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 列即可。
+在明细数据模型中,数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 Duplicate 
Key,只是用来指明数据存储按照哪些列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 列即可。
 
 举例如下,一个表有如下的数据列,没有主键更新和基于聚合键的聚合需求。
 
@@ -116,7 +116,7 @@ MySQL > desc example_tbl_duplicate_without_keys_by_default;
 
 ## 指定排序列的明细模型
 
-在建表语句中指定 DUPLICATE KEY,用来指明数据存储按照这些 Key 列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 
列即可。
+在建表语句中指定 Duplicate Key,用来指明数据存储按照这些 Key 列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 
列即可。
 
 建表语句举例如下,指定了按照 timestamp、type 和 error_code 三列进行排序。
 
@@ -150,4 +150,4 @@ MySQL > desc example_tbl_duplicate;
 6 rows in set (0.01 sec)
 ```
 
-数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 DUPLICATE 
KEY,只是用来指明数据存储按照哪些列进行排序。在 DUPLICATE KEY 的选择上,建议选择前 2-4 列即可。
\ No newline at end of file
+数据按照导入文件中的数据进行存储,不会有任何聚合。即使两行数据完全相同,也都会保留。而在建表语句中指定的 Duplicate 
Key,只是用来指明数据存储按照哪些列进行排序。在 Duplicate Key 的选择上,建议选择前 2-4 列即可。


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to