This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-0.15 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit afc7131b15cbd534bd8125bc8331e4ca27a70b51 Author: wunan1210 <[email protected]> AuthorDate: Tue Oct 19 10:24:08 2021 +0800 [Docs] Fix exporter document error (#6864) * fix exporter document error * update en doc --- docs/en/administrator-guide/export-manual.md | 3 ++- docs/zh-CN/administrator-guide/export-manual.md | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/en/administrator-guide/export-manual.md b/docs/en/administrator-guide/export-manual.md index 1d9e565..df2dbbb 100644 --- a/docs/en/administrator-guide/export-manual.md +++ b/docs/en/administrator-guide/export-manual.md @@ -108,13 +108,14 @@ PROPERTIES ( "label"="mylabel", "column_separator"=",", + "columns" = "col1,col2", "exec_mem_limit"="2147483648", "timeout" = "3600" ) WITH BROKER "hdfs" ( "username" = "user", - "password" = "passwd", + "password" = "passwd" ); ``` diff --git a/docs/zh-CN/administrator-guide/export-manual.md b/docs/zh-CN/administrator-guide/export-manual.md index 10925bc..89f3bbe 100644 --- a/docs/zh-CN/administrator-guide/export-manual.md +++ b/docs/zh-CN/administrator-guide/export-manual.md @@ -112,14 +112,14 @@ PROPERTIES ( "label" = "mylabel", "column_separator"=",", - "columns":"col1,col2" + "columns" = "col1,col2", "exec_mem_limit"="2147483648", "timeout" = "3600" ) WITH BROKER "hdfs" ( "username" = "user", - "password" = "passwd", + "password" = "passwd" ); ``` --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
