From 4b8a950de62637690697f30f355a27d8d609a936 Mon Sep 17 00:00:00 2001 From: dennis zhuang Date: Mon, 18 Sep 2023 19:18:23 +0800 Subject: [PATCH] Update src/table/src/metadata.rs Co-authored-by: Ruihang Xia --- src/table/src/metadata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/table/src/metadata.rs b/src/table/src/metadata.rs index 32f1cca06d3e..0f8880a14ce0 100644 --- a/src/table/src/metadata.rs +++ b/src/table/src/metadata.rs @@ -479,7 +479,7 @@ impl TableInfo { .map(|id| RegionId::new(self.table_id(), *id)) .collect() } - /// Returns the full table name in the form of `{catalo}g.{schema}.{table}`. + /// Returns the full table name in the form of `{catalog}.{schema}.{table}`. pub fn full_table_name(&self) -> String { common_catalog::format_full_table_name(&self.catalog_name, &self.schema_name, &self.name) }