Skip to content

Commit

Permalink
fix(streaming): assert all states finished, or all not finished for b…
Browse files Browse the repository at this point in the history
…ackfill (#12767) (#12779)

Co-authored-by: Noel Kwan <[email protected]>
  • Loading branch information
github-actions[bot] and kwannoel authored Oct 11, 2023
1 parent c1d72f1 commit 0ab8ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream/src/executor/backfill/no_shuffle_backfill.rs
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ where
let key: &[Datum] = &[Some(vnode.into())];
let row = state_table.get_row(key).await?;
let state = Self::deserialize_backfill_state(row, pk_len);
assert_eq!(state, expected_state);
assert_eq!(state.is_finished, expected_state.is_finished);
}
Ok(expected_state)
}
Expand Down

0 comments on commit 0ab8ad9

Please sign in to comment.