You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2022/05/30 00:28:25 UTC

[incubator-doris] branch master updated: [doc]Fix typo in create-table documentation. (#9834)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 88db94c220 [doc]Fix typo in create-table documentation. (#9834)
88db94c220 is described below

commit 88db94c2203311d3d6101141d398fd169c85ac8c
Author: smallhibiscus <84...@qq.com>
AuthorDate: Mon May 30 08:28:15 2022 +0800

    [doc]Fix typo in create-table documentation. (#9834)
    
    Co-authored-by: smallhibiscus <844981280>
---
 .../sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md   | 4 ++--
 .../sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/en/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md b/docs/en/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md
index 1c59e95638..2aebf54257 100644
--- a/docs/en/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md
+++ b/docs/en/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md
@@ -351,8 +351,8 @@ distribution_info
     (
         k1 BIGINT,
         k2 LARGEINT,
-        v1 VARCHAR(2048) REPLACE,
-        v2 SMALLINT SUM DEFAULT "10"
+        v1 VARCHAR(2048),
+        v2 SMALLINT DEFAULT "10"
     )
     UNIQUE KEY(k1, k2)
     DISTRIBUTED BY HASH (k1, k2) BUCKETS 32
diff --git a/docs/zh-CN/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md b/docs/zh-CN/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md
index 34104be0f1..b7e16d40ed 100644
--- a/docs/zh-CN/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md
+++ b/docs/zh-CN/sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md
@@ -351,8 +351,8 @@ distribution_info
     (
         k1 BIGINT,
         k2 LARGEINT,
-        v1 VARCHAR(2048) REPLACE,
-        v2 SMALLINT SUM DEFAULT "10"
+        v1 VARCHAR(2048),
+        v2 SMALLINT DEFAULT "10"
     )
     UNIQUE KEY(k1, k2)
     DISTRIBUTED BY HASH (k1, k2) BUCKETS 32


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