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 81495b0ff1 [docs]correct spelling of the word 'LABEL' #3265 (#8956) 81495b0ff1 is described below commit 81495b0ff17f6e8adc93ba9612aed85eba0c96be Author: jiangmengmeng <1804226...@qq.com> AuthorDate: Tue Apr 12 08:44:33 2022 +0800 [docs]correct spelling of the word 'LABEL' #3265 (#8956) --- docs/en/getting-started/basic-usage.md | 2 +- new-docs/en/data-table/basic-usage.md | 2 +- samples/mini_load/python/mini_load_utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/getting-started/basic-usage.md b/docs/en/getting-started/basic-usage.md index 4819c76da1..f3b4cc44a6 100644 --- a/docs/en/getting-started/basic-usage.md +++ b/docs/en/getting-started/basic-usage.md @@ -313,7 +313,7 @@ PROPERTIES Broker imports are asynchronous commands. Successful execution of the above commands only indicates successful submission of tasks. Successful imports need to be checked through `SHOW LOAD;' Such as: -`SHOW LOAD WHERE LABLE = "table1_20170708";` +`SHOW LOAD WHERE LABEL = "table1_20170708";` In the return result, FINISHED in the `State` field indicates that the import was successful. diff --git a/new-docs/en/data-table/basic-usage.md b/new-docs/en/data-table/basic-usage.md index 56c2581d82..4f45044dfe 100644 --- a/new-docs/en/data-table/basic-usage.md +++ b/new-docs/en/data-table/basic-usage.md @@ -321,7 +321,7 @@ PROPERTIES Broker imports are asynchronous commands. Successful execution of the above commands only indicates successful submission of tasks. Successful imports need to be checked through `SHOW LOAD;' Such as: ```sql -SHOW LOAD WHERE LABLE = "table1_20170708"; +SHOW LOAD WHERE LABEL = "table1_20170708"; ``` In the return result, `FINISHED` in the `State` field indicates that the import was successful. diff --git a/samples/mini_load/python/mini_load_utils.py b/samples/mini_load/python/mini_load_utils.py index e8bb1a569c..88753680e0 100644 --- a/samples/mini_load/python/mini_load_utils.py +++ b/samples/mini_load/python/mini_load_utils.py @@ -51,7 +51,7 @@ class DorisMiniLoadClient(object): def get_label(self): """ 获取label前缀 - :return: lable + :return: label """ return '_'.join([self.table, os.path.basename(self.file_name)]) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org