(fix)(chat) Fix the null pointer issue in fieldNameToDateFormat. (#1587)

This commit is contained in:
lexluo09
2024-08-19 19:31:27 +08:00
committed by GitHub
parent af270580bf
commit ca098b576c
2 changed files with 6 additions and 3 deletions

View File

@@ -90,6 +90,6 @@ public class SchemaElement implements Serializable {
if (StringUtils.isNotBlank(timeFormat) && containsPartitionTime()) {
return timeFormat;
}
return null;
return "";
}
}