Skip to content

Commit

Permalink
Optimize.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqi1129 committed Oct 30, 2024
1 parent f9e7972 commit ce4fc54
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ private Map<String, String> removeUnknownProperties(Map<String, String> properti
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));

Set<String> unknownProperties = SetUtils.difference(properties.keySet(), result.keySet());
LOG.info("Remove unknown properties for Doris table: {}", unknownProperties);
if (!unknownProperties.isEmpty()) {
LOG.warn("Remove unknown properties '{}' for Doris table.", unknownProperties);
}
return result;
}

Expand Down

0 comments on commit ce4fc54

Please sign in to comment.