waukin commented on code in PR #5606:
URL: https://github.com/apache/gravitino/pull/5606#discussion_r1848424335
##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/MetalakeDetails.java:
##########
@@ -54,6 +58,10 @@ public void handle() {
return;
}
- System.out.println(metalake + "," + comment);
+ List<String> headers = Arrays.asList("metalake", "comment");
+ List<List<String>> rows = new ArrayList<>();
+ rows.add(Arrays.asList(metalake, comment));
+ TablePrinter tablePrinter = new TablePrinter();
+ tablePrinter.print(headers, rows);
Review Comment:
Thank you for pointing this out. I'll update the changes to be optional via
a flag.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]