Skip to content

Commit

Permalink
nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 20, 2024
1 parent 29f29f4 commit bc7780c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,8 @@ private Statistics computeCatalogRelation(CatalogRelation catalogRelation) {
Optional<Statistics> optStats = cascadesContext.getStatementContext()
.getStatistics(olap.getRelationId());
if (optStats.isPresent()) {
double actualRowCount = catalogRelation.getTable().getRowCountForNereids();
double actualRowCount = catalogRelation
.getTable().getRowCountForNereids();
if (actualRowCount > optStats.get().getRowCount()) {
return optStats.get();
}
Expand Down

0 comments on commit bc7780c

Please sign in to comment.