morrySnow commented on code in PR #31395: URL: https://github.com/apache/doris/pull/31395#discussion_r1502490943
########## fe/fe-core/src/main/java/org/apache/doris/analysis/ColumnDef.java: ########## @@ -542,6 +542,16 @@ public static void validateDefaultValue(Type type, String defaultValue, DefaultV default: throw new AnalysisException("Unsupported type: " + type); } + if (null != defaultValueExprDef && defaultValueExprDef.getExprName().equals("now")) { + switch (primitiveType) { + case DATETIME: + case DATETIMEV2: + break; + default: + throw new AnalysisException("Types other than DATETIME and DATETIMEV2 " Review Comment: add regression test please -- 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...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org