Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 22, 2024
1 parent 5f73aec commit b7d0a5f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,8 @@ private Statistics computeOlapScan(OlapScan olapScan) {
for (Slot slot : ((Relation) olapScan).getOutput()) {
if (derivedStats.findColumnStatistics(slot) == null) {
derivedStats.addColumnStats(slot,
new ColumnStatisticBuilder(ColumnStatistic.UNKNOWN).setCount(derivedRowCount).build());
new ColumnStatisticBuilder(ColumnStatistic.UNKNOWN)
.setCount(derivedRowCount).build());
}
}
return derivedStats;
Expand Down

0 comments on commit b7d0a5f

Please sign in to comment.