Abyss-lord commented on code in PR #6495: URL: https://github.com/apache/gravitino/pull/6495#discussion_r1967015467
########## clients/cli/src/main/java/org/apache/gravitino/cli/outputs/TableFormat.java: ########## @@ -534,10 +542,85 @@ public CatalogListTableFormat(CommandContext context) { /** {@inheritDoc} */ @Override public String getOutput(Catalog[] catalogs) { - Column columnName = new Column(context, "catalog"); + Column columnName = new Column(context, "Name"); Review Comment: @justinmclean The problem is that `ListSchema` and `ListTable` return not a Schema[] or a Table object[], but a String[] and a NameIndentifier[]. If load it again and I'm worried about performance, So I built `ListTableFormat` class to take an array of Strings to work with `ListSchema` and `ListTable` results. The column names have to be called Name for consistency. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org