Skip to content

Commit

Permalink
update non-key stats at end of estimation
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Sep 26, 2023
1 parent a8f3127 commit 7633f1b
Show file tree
Hide file tree
Showing 6 changed files with 199 additions and 80 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void execute() {
// child group's row count unchanged when the parent group expression is a project operation.
double parentRowCount = groupExpression.getOwnerGroup().getStatistics().getRowCount();
groupExpression.children().forEach(g -> g.setStatistics(
g.getStatistics().updateRowCountOnly(parentRowCount))
g.getStatistics().updateRowCountAndColStats(parentRowCount))
);
}
}
Expand Down
Loading

0 comments on commit 7633f1b

Please sign in to comment.