Skip to content

Commit cd644f1

Browse files
committed
minor
1 parent 4053fd4 commit cd644f1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/action/commit/BaseCommitActionExecutor.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,11 @@ protected void commit(HoodieWriteMetadata<O> result, List<HoodieWriteStat> write
236236
result.setCommitMetadata(Option.of(metadata));
237237
// update cols to Index as applicable
238238
try {
239-
HoodieColumnStatsIndexUtils.updateColsToIndex(table, config, metadata, actionType,
240-
(Functions.Function2<HoodieTableMetaClient, List<String>, Void>) (metaClient, columnsToIndex) -> {
241-
updateColumnsToIndexForColumnStats(metaClient, columnsToIndex);
242-
return null;
243-
});
239+
HoodieColumnStatsIndexUtils.updateColsToIndex(table, config, metadata, actionType,
240+
(Functions.Function2<HoodieTableMetaClient, List<String>, Void>) (metaClient, columnsToIndex) -> {
241+
updateColumnsToIndexForColumnStats(metaClient, columnsToIndex);
242+
return null;
243+
});
244244
} catch (UnsupportedOperationException uoe) {
245245
LOG.warn("Skip updating column stats index in the metadata table for bootstrap operation because it is not supported", uoe);
246246
}

0 commit comments

Comments
 (0)