diff --git a/src/frontend/src/handler/show.rs b/src/frontend/src/handler/show.rs index 92f082a61dcb6..226a219a11887 100644 --- a/src/frontend/src/handler/show.rs +++ b/src/frontend/src/handler/show.rs @@ -117,7 +117,7 @@ struct ShowObjectRow { pub struct ShowColumnRow { pub name: String, pub r#type: String, - pub is_hidden: Option, + pub is_hidden: Option, pub description: Option, } @@ -135,7 +135,7 @@ impl ShowColumnRow { ShowColumnRow { name: c.name, r#type: type_name, - is_hidden: Some(col.is_hidden), + is_hidden: Some(col.is_hidden.to_string()), description: c.description, } })