Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Sep 20, 2023
1 parent ec9763c commit f47da96
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java
Original file line number Diff line number Diff line change
Expand Up @@ -833,14 +833,13 @@ && getScale() == other.getScale()
&& Objects.equals(children, other.children)
&& Objects.equals(realDefaultValue, other.realDefaultValue);

return ok;
if (!ok) {
log.info("this column: name {} default value {} aggregationType {} isAggregationTypeImplicit {} "
LOG.info("this column: name {} default value {} aggregationType {} isAggregationTypeImplicit {} "
+ "isKey {}, isAllowNull {}, datatype {}, strlen {}, precision {}, scale {}, visible {} "
+ "children {} realDefaultValue {}",
name, getDefaultValue(), aggregationType, isAggregationTypeImplicit, isKey, isAllowNull,
getDataType(), getStrLen(), getPrecision(), getScale(), visible, children, realDefaultValue);
log.info("other column: name {} default value {} aggregationType {} isAggregationTypeImplicit {} "
LOG.info("other column: name {} default value {} aggregationType {} isAggregationTypeImplicit {} "
+ "isKey {}, isAllowNull {}, datatype {}, strlen {}, precision {}, scale {}, visible {} "
+ "children {} realDefaultValue {}",
other.name, other.getDefaultValue(), other.aggregationType, other.isAggregationTypeImplicit,
Expand Down

0 comments on commit f47da96

Please sign in to comment.