-
Notifications
You must be signed in to change notification settings - Fork 267
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
Fix routine load statements documentation docs #1915
base: master
Are you sure you want to change the base?
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.
一些通用的问题。评论到了第一次发现的地方,其他文档也检查修改一下吧
[job_properties] | ||
FROM data_source | ||
[data_source_properties] | ||
ALTER ROUTINE LOAD FOR [<db.>]<job_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.
ALTER ROUTINE LOAD FOR [<db.>]<job_name> | |
ALTER ROUTINE LOAD FOR [<db>.]<job_name> |
|
||
## Required Parameters | ||
|
||
**1. `[db.]job_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.
**1. `[db.]job_name`** | |
**1. `[<db>.]<job_name>`** |
> | ||
> The identifier cannot use reserved keywords. For more details, please refer to identifier requirements and reserved keywords. | ||
|
||
**2. `job_properties`** |
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.
**2. `job_properties`** | |
**2. `<job_properties>`** |
[job_properties] | ||
FROM data_source [data_source_properties] | ||
[COMMENT "comment"] | ||
CREATE ROUTINE LOAD [<db.>]<job_name> [ON <tbl_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.
CREATE ROUTINE LOAD [<db.>]<job_name> [ON <tbl_name>] | |
CREATE ROUTINE LOAD [<db>.]<job_name> [ON <tbl_name>] |
[<load_properties>] | ||
[<job_properties>] | ||
FROM <data_source> [<data_source_properties>] | ||
[<COMMENT "comment">] |
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.
[<COMMENT "comment">] | |
[COMMENT "<comment>"] |
@@ -25,31 +25,51 @@ under the License. | |||
--> | |||
|
|||
|
|||
## Description | |||
## Description## Description |
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.
这里粘贴错了?
|
||
```sql | ||
PAUSE [ALL] ROUTINE LOAD FOR job_name | ||
PAUSE [<ALL>] ROUTINE LOAD FOR <job_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.
关键字而不是参数,不需要加尖括号
PAUSE [<ALL>] ROUTINE LOAD FOR <job_name> | |
PAUSE [ALL] ROUTINE LOAD FOR <job_name> |
## Example | ||
## Required Parameters | ||
|
||
**1. `job_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.
**1. `job_name`** | |
**1. `<job_name>`** |
Versions
Languages
Docs Checklist