-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[doc]modify catalog docs #1903
base: master
Are you sure you want to change the base?
[doc]modify catalog docs #1903
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
请严格按照实例给出的排版书写。缺少
- 参数章节
- 权限控制章节
|
||
This statement is used to set properties of the specified catalog. (administrator only) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This statement is used to set properties of the specified catalog. (administrator only) | |
This statement is used to set properties of the specified catalog. |
|
||
1) Rename the catalog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
放到语法章节
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缺少参数章节
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缺少权限控制章节
CREATE CATALOG [IF NOT EXISTS] <catalog_name> [comment] | ||
PROPERTIES ("key"="value", ...); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
参数都要被尖括号包裹
CREATE CATALOG [IF NOT EXISTS] <catalog_name> [comment] | |
PROPERTIES ("key"="value", ...); | |
CREATE CATALOG [IF NOT EXISTS] <catalog_name> [ COMMENT <comment>] | |
PROPERTIES ("<key>"="<value>", ...); |
|
||
```sql | ||
CREATE CATALOG [IF NOT EXISTS] catalog_name [comment] | ||
CREATE CATALOG [IF NOT EXISTS] <catalog_name> [comment] | ||
PROPERTIES ("key"="value", ...); | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
缺少参数章节
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
只评论了第一个发现问题的地方,麻烦检查修改一下所有的文档
``` | ||
|
||
## Required Parameters | ||
|
||
### 1. `<catalog_name>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
用加粗,而不是H3 header
### 1. `<catalog_name>` | |
** 1. `<catalog_name>` ** |
REFRESH TABLE [catalog_name.][database_name.]table_name; | ||
REFRESH CATALOG <catalog_name>; | ||
REFRESH DATABASE <[catalog_name.]database_name>; | ||
REFRESH TABLE <[catalog_name.][database_name.]table_name>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
REFRESH TABLE <[catalog_name.][database_name.]table_name>; | |
REFRESH TABLE [[<catalog_name.>]<database_name>.]<table_name>; |
REFRESH DATABASE [catalog_name.]database_name; | ||
REFRESH TABLE [catalog_name.][database_name.]table_name; | ||
REFRESH CATALOG <catalog_name>; | ||
REFRESH DATABASE <[catalog_name.]database_name>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
REFRESH DATABASE <[catalog_name.]database_name>; | |
REFRESH DATABASE [<catalog_name.>]<database_name>; |
modify catalog docs
Versions
Languages
Docs Checklist