refactor: replace sink_table_id with sink_table_name (#153)
This commit is contained in:
@@ -55,11 +55,14 @@ message FlowResponse {
|
||||
repeated TaskId affected_tasks = 4;
|
||||
}
|
||||
|
||||
// very similar to `ddl.CreateTaskExpr` just replace `task_name` with `task_id`
|
||||
// Create a flow task
|
||||
//
|
||||
// Very similar to `ddl.CreateTaskExpr`,
|
||||
// replace `source_table_names` with `source_table_ids`
|
||||
message CreateRequest {
|
||||
TaskId task_id = 1;
|
||||
repeated TableId source_table_ids = 2;
|
||||
TableId sink_table_id = 3;
|
||||
TableName sink_table_name = 3;
|
||||
bool create_if_not_exists = 4;
|
||||
string expire_when = 5;
|
||||
string comment = 6;
|
||||
|
||||
Reference in New Issue
Block a user