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
+1 -9
View File
@@ -54,12 +54,6 @@ message Peer {
message TableId { uint32 id = 1; }
message TableName {
string catalog_name = 1;
string schema_name = 2;
string table_name = 3;
}
message TimeInterval {
// The unix timestamp in millis of the start of this period.
int64 start_timestamp_millis = 1;
@@ -75,6 +69,4 @@ message KeyValue {
}
// Procedure identifer
message ProcedureId {
bytes key = 1;
}
message ProcedureId { bytes key = 1; }