Skip to content

Commit

Permalink
[FLINK-17942][table-planner-blink] Fix WindowOperator not call StateM…
Browse files Browse the repository at this point in the history
…apView.cleanup when destroying windows

This closes apache#12358
  • Loading branch information
libenchao committed May 28, 2020
1 parent 3a322e0 commit b6f92fe
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ public void setWindowAccumulators(W window, RowData acc) throws Exception {
public void clearWindowState(W window) throws Exception {
windowState.setCurrentNamespace(window);
windowState.clear();
windowAggregator.cleanup(window);
}

@Override
Expand Down

0 comments on commit b6f92fe

Please sign in to comment.