refactor: move TableName out of meta common (#152)

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
Ruihang Xia
2024-04-25 20:14:54 +08:00
committed by GitHub
parent d18b1c8b8a
commit 783682fabc
20 changed files with 2689 additions and 4070 deletions
+2 -8
View File
@@ -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;