justinmclean commented on code in PR #6538:
URL: https://github.com/apache/gravitino/pull/6538#discussion_r1971111900


##########
clients/cli/src/main/java/org/apache/gravitino/cli/outputs/LineUtil.java:
##########
@@ -100,4 +104,27 @@ public static String capitalize(String str) {
       }
     }
   }
+
+  /**
+   * Get the default value of a column.
+   *
+   * @param defaultValue the default value expression.
+   * @return the default value as a string.
+   */
+  public static String getDefaultValue(Expression defaultValue) {
+    if (defaultValue == null
+        || defaultValue == 
org.apache.gravitino.rel.Column.DEFAULT_VALUE_NOT_SET) {
+      return "N/A";
+    }
+
+    if (defaultValue instanceof Literal && ((Literal<?>) defaultValue).value() 
!= null) {
+      return ((Literal<?>) defaultValue).value().toString();
+    } else if (defaultValue instanceof FunctionExpression) {
+      return defaultValue.toString();
+    } else if (defaultValue.references().length == 0) {
+      return "N/A";
+    }

Review Comment:
   There is a special value for the current time as well. It would be good to 
include that.



-- 
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

Reply via email to