refactor: implement Display for TableRouteKey (#1879)

This commit is contained in:
Weny Xu
2023-07-05 10:42:16 +09:00
committed by GitHub
parent 4b580f4037
commit 8a00424468
5 changed files with 24 additions and 16 deletions

View File

@@ -301,7 +301,7 @@ impl DistTable {
schema_name,
table_name: old_table_name,
}
.key();
.to_string();
let new_key = TableRouteKey {
table_id: table_id.into(),
@@ -309,7 +309,7 @@ impl DistTable {
schema_name,
table_name: new_table_name,
}
.key();
.to_string();
self.catalog_manager
.backend()