This is an automated email from the ASF dual-hosted git repository.
jakevin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 087488db3b [typo](doc) fixed spelling errors (#13974)
087488db3b is described below
commit 087488db3b0d7993240a18dcaa869c245ccfb7e5
Author: lihaijian <[email protected]>
AuthorDate: Sat Nov 5 15:40:55 2022 +0800
[typo](doc) fixed spelling errors (#13974)
---
docs/en/docs/data-table/data-partition.md | 4 ++--
docs/zh-CN/docs/data-table/data-partition.md | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/en/docs/data-table/data-partition.md
b/docs/en/docs/data-table/data-partition.md
index 8cc4102433..05f65ab583 100644
--- a/docs/en/docs/data-table/data-partition.md
+++ b/docs/en/docs/data-table/data-partition.md
@@ -57,7 +57,7 @@ This section introduces Doris's approach to building tables
with an example.
```sql
-- Range Partition
-CREATE TABLE IF NOT EXISTS example_db.expamle_range_tbl
+CREATE TABLE IF NOT EXISTS example_db.example_range_tbl
(
`user_id` LARGEINT NOT NULL COMMENT "User id",
`date` DATE NOT NULL COMMENT "Data fill in date time",
@@ -89,7 +89,7 @@ PROPERTIES
-- List Partition
-CREATE TABLE IF NOT EXISTS example_db.expamle_list_tbl
+CREATE TABLE IF NOT EXISTS example_db.example_list_tbl
(
`user_id` LARGEINT NOT NULL COMMENT "User id",
`date` DATE NOT NULL COMMENT "Data fill in date time",
diff --git a/docs/zh-CN/docs/data-table/data-partition.md
b/docs/zh-CN/docs/data-table/data-partition.md
index fc4ae78acc..73c83ac943 100644
--- a/docs/zh-CN/docs/data-table/data-partition.md
+++ b/docs/zh-CN/docs/data-table/data-partition.md
@@ -61,7 +61,7 @@ Doris 的建表是一个同步命令,SQL执行完成即返回结果,命令
```sql
-- Range Partition
-CREATE TABLE IF NOT EXISTS example_db.expamle_range_tbl
+CREATE TABLE IF NOT EXISTS example_db.example_range_tbl
(
`user_id` LARGEINT NOT NULL COMMENT "用户id",
`date` DATE NOT NULL COMMENT "数据灌入日期时间",
@@ -93,7 +93,7 @@ PROPERTIES
-- List Partition
-CREATE TABLE IF NOT EXISTS example_db.expamle_list_tbl
+CREATE TABLE IF NOT EXISTS example_db.example_list_tbl
(
`user_id` LARGEINT NOT NULL COMMENT "用户id",
`date` DATE NOT NULL COMMENT "数据灌入日期时间",
@@ -161,7 +161,7 @@ Doris 支持两层的数据划分。第一层是 Partition,支持 Range 和 Li
- 通过 `VALUES [...)` 同时指定上下界比较容易理解。这里举例说明,当使用 `VALUES LESS THAN (...)`
语句进行分区的增删操作时,分区范围的变化情况:
- - 如上 `expamle_range_tbl` 示例,当建表完成后,会自动生成如下3个分区:
+ - 如上 `example_range_tbl` 示例,当建表完成后,会自动生成如下3个分区:
```text
p201701: [MIN_VALUE, 2017-02-01)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]