Skip to content

Commit

Permalink
assert all states finished, or all not finished
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Oct 11, 2023
1 parent 4ce28cd commit e752660
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 e752660

Please sign in to comment.