starocean999 commented on code in PR #44997: URL: https://github.com/apache/doris/pull/44997#discussion_r1880310713
########## fe/fe-core/src/main/java/org/apache/doris/analysis/ColumnDef.java: ########## @@ -680,7 +670,22 @@ public String toSql() { } if (defaultValue.isSet) { - sb.append(defaultValue.toSql()).append(" "); + sb.append("DEFAULT "); + if (defaultValue.value != null) { + if (typeDef.getType().getPrimitiveType() != PrimitiveType.BITMAP + && typeDef.getType().getPrimitiveType() != PrimitiveType.HLL) { + if (defaultValue.defaultValueExprDef != null) { + sb.append(defaultValue.value); + } else { + sb.append("\"").append(SqlUtils.escapeQuota(defaultValue.value)).append("\""); + } + } else if (typeDef.getType().getPrimitiveType() == PrimitiveType.BITMAP) { Review Comment: how to handle HLL_EMPTY default value? -- 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