refactor: move TableName out of meta common (#152)
Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
@@ -42,8 +42,8 @@ message DdlRequest {
|
||||
message CreateFlowTaskExpr {
|
||||
string catalog_name = 1;
|
||||
string task_name = 2;
|
||||
repeated SchemaScopedTableName source_table_names = 3;
|
||||
SchemaScopedTableName sink_table_name = 4;
|
||||
repeated TableName source_table_names = 3;
|
||||
TableName sink_table_name = 4;
|
||||
bool or_replace = 5;
|
||||
bool create_if_not_exists = 6;
|
||||
string expire_when = 7;
|
||||
@@ -52,12 +52,6 @@ message CreateFlowTaskExpr {
|
||||
map<string, string> task_options = 10;
|
||||
}
|
||||
|
||||
// Table name
|
||||
message SchemaScopedTableName {
|
||||
string schema_name = 1;
|
||||
string table_name = 2;
|
||||
}
|
||||
|
||||
// Remove a flow task.
|
||||
message DropFlowTaskExpr {
|
||||
string catalog_name = 1;
|
||||
|
||||
Reference in New Issue
Block a user