This is an automated email from the ASF dual-hosted git repository. jiafengzheng 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 22f5dedf8a [doc]Doc fix (#11384) 22f5dedf8a is described below commit 22f5dedf8a1600e5eba8e09a16789c37ba6cd9eb Author: Liqf <109049295+lemonlit...@users.noreply.github.com> AuthorDate: Tue Aug 2 11:12:11 2022 +0800 [doc]Doc fix (#11384) * fix document,pull-request and get-starting --- docs/en/community/how-to-contribute/pull-request.md | 2 +- docs/en/docs/get-starting/get-starting.md | 18 +++++++++--------- docs/zh-CN/community/how-to-contribute/pull-request.md | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/en/community/how-to-contribute/pull-request.md b/docs/en/community/how-to-contribute/pull-request.md index 45872652e2..ecf3220ef9 100644 --- a/docs/en/community/how-to-contribute/pull-request.md +++ b/docs/en/community/how-to-contribute/pull-request.md @@ -49,7 +49,7 @@ When clone is completed, origin defaults to the remote fork address on github. #### (2) Add apache/incubator-doris to the remote branch upstream of the local warehouse: ``` -cd incubator-doris +cd doris git remote add upstream https://github.com/apache/doris.git ``` diff --git a/docs/en/docs/get-starting/get-starting.md b/docs/en/docs/get-starting/get-starting.md index 1ee38f7541..146c644848 100644 --- a/docs/en/docs/get-starting/get-starting.md +++ b/docs/en/docs/get-starting/get-starting.md @@ -221,7 +221,7 @@ FE splits the query plan into fragments and sends them to BE for task execution. - After executing the SQL statement, you can view the corresponding SQL statement execution report information on the FE's WEB-UI interface -For a complete parameter comparison table, please go to [Profile parameter analysis](../admin-manual/query-profile.md) View Details +For a complete parameter comparison table, please go to [Profile parameter analysis](../admin-manual/query-profile) View Details #### Library table operations @@ -238,7 +238,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy CREATE DATABASE database name; ```` - > For more detailed syntax and best practices used by Create-DataBase, see [Create-DataBase](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-DATABASE.md) command manual. + > For more detailed syntax and best practices used by Create-DataBase, see [Create-DataBase](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-DATABASE) command manual. > > If you don't know the full name of the command, you can use "help command a field" for fuzzy query. If you type 'HELP CREATE', you can match `CREATE DATABASE`, `CREATE TABLE`, `CREATE USER` and other commands. @@ -259,7 +259,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy - Create data table - > For more detailed syntax and best practices used by Create-Table, see [Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md) command manual. + > For more detailed syntax and best practices used by Create-Table, see [Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE) command manual. Use the `CREATE TABLE` command to create a table (Table). More detailed parameters can be viewed: @@ -273,7 +273,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy USE example_db; ```` - Doris supports two table creation methods, single partition and composite partition (for details, please refer to [Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md) command manual). + Doris supports two table creation methods, single partition and composite partition (for details, please refer to [Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE) command manual). The following takes the aggregation model as an example to demonstrate the table building statements for two partitions. @@ -398,7 +398,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy 1. Insert Into - > For more detailed syntax and best practices for Insert usage, see [Insert](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md) Command Manual. + > For more detailed syntax and best practices for Insert usage, see [Insert](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT) Command Manual. The Insert Into statement is used in a similar way to the Insert Into statement in databases such as MySQL. But in Doris, all data writing is a separate import job. Therefore, Insert Into is also introduced as an import method here. @@ -448,7 +448,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy - If `status` is `visible`, the data import is successful. - If `warnings` is greater than 0, it means that data is filtered. You can get the url through the `show load` statement to view the filtered lines. - For more detailed instructions, see the [Insert](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md) command manual. + For more detailed instructions, see the [Insert](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT) command manual. 2. Batch Import @@ -505,7 +505,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy Broker import uses the deployed Broker process to read data on external storage for import. - > For more detailed syntax and best practices used by Broker Load, see [Broker Load](../sql-manual/sql-reference/Data-Manipulation-Statements/Load/BROKER-LOAD.md) command manual, you can also enter `HELP BROKER LOAD` in the MySql client command line for more help information. + > For more detailed syntax and best practices used by Broker Load, see [Broker Load](../sql-manual/sql-reference/Data-Manipulation-Statements/Load/BROKER-LOAD) command manual, you can also enter `HELP BROKER LOAD` in the MySql client command line for more help information. Example: With "table1_20170708" as the Label, import the files on HDFS into table1 @@ -597,7 +597,7 @@ For a complete parameter comparison table, please go to [Profile parameter analy #### Update Data -> For more detailed syntax and best practices used by Update, see [Update](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/UPDATE.md) Command Manual. +> For more detailed syntax and best practices used by Update, see [Update](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/UPDATE) Command Manual. The current UPDATE statement **only supports** row updates on the Unique model, and there may be data conflicts caused by concurrent updates. At present, Doris does not deal with such problems, and users need to avoid such problems from the business side. @@ -642,7 +642,7 @@ The current UPDATE statement **only supports** row updates on the Unique model, #### Delete Data -> For more detailed syntax and best practices for Delete use, see [Delete](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/DELETE.md) Command Manual. +> For more detailed syntax and best practices for Delete use, see [Delete](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/DELETE) Command Manual. 1. Grammar rules diff --git a/docs/zh-CN/community/how-to-contribute/pull-request.md b/docs/zh-CN/community/how-to-contribute/pull-request.md index 0889bab0b0..424527c293 100644 --- a/docs/zh-CN/community/how-to-contribute/pull-request.md +++ b/docs/zh-CN/community/how-to-contribute/pull-request.md @@ -49,7 +49,7 @@ clone 完成后,origin 会默认指向 github 上的远程 fork 地址。 #### (2)将 apache/doris 添加为本地仓库的远程分支 upstream: ``` -cd incubator-doris +cd doris git remote add upstream https://github.com/apache/doris.git ``` --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org