Skip to content

Commit

Permalink
actually recover row count
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Aug 15, 2024
1 parent 47c3fcc commit 55aa486
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/stream/src/executor/approx_percentile/global_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ impl<S: StateStore> GlobalApproxPercentileState<S> {
// Refill row_count
let row_count_state = self.get_row_count_state().await?;
let row_count = Self::decode_row_count(&row_count_state)?;
self.row_count = row_count;
tracing::debug!(?row_count, "recovered row_count");

// Refill cache
Expand Down

0 comments on commit 55aa486

Please sign in to comment.