Abyss-lord commented on code in PR #5770:
URL: https://github.com/apache/gravitino/pull/5770#discussion_r1871091827
##########
clients/cli/src/test/java/org/apache/gravitino/cli/integration/test/TableFormatOutputIT.java:
##########
@@ -152,11 +154,11 @@ public void testCatalogDetailsCommand() {
// Get the output and verify it
String output = new String(outputStream.toByteArray(),
StandardCharsets.UTF_8).trim();
assertEquals(
- "+----------+------------+-----------------+---------+\n"
- + "| catalog | type | provider | comment |\n"
- + "+----------+------------+-----------------+---------+\n"
- + "| postgres | RELATIONAL | jdbc-postgresql | null |\n"
- + "+----------+------------+-----------------+---------+",
+ "+----------+------------+-----------------+-------------------+\n"
+ + "| catalog | type | provider | comment
|\n"
+ +
"+----------+------------+-----------------+-------------------+\n"
+ + "| postgres | RELATIONAL | jdbc-postgresql | catalog,用于测试 |\n"
+ +
"+----------+------------+-----------------+-------------------+",
Review Comment:
done, plz check it again.
##########
clients/cli/src/test/java/org/apache/gravitino/cli/integration/test/TableFormatOutputIT.java:
##########
@@ -59,7 +59,9 @@ public void startUp() {
commandArg(GravitinoOptions.PROPERTIES),
"jdbc-url=jdbc:postgresql://postgresql-host/mydb,jdbc-user=user,jdbc-password=password,jdbc-database=db,jdbc-driver=org.postgresql.Driver",
commandArg(GravitinoOptions.URL),
- gravitinoUrl
+ gravitinoUrl,
+ commandArg(GravitinoOptions.COMMENT),
+ "catalog,用于测试"
Review Comment:
done, plz check it again.
--
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]