Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/datastore/src/locking_tx_datastore/replay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ impl StateView for ReplayCommittedState<'_> {
/// then falling back to [`CommittedState::iter_by_col_eq`].
fn find_st_table_row(&self, table_id: TableId) -> Result<StTableRow> {
if let Some(row_ptr) = self.replay_table_updated.get(&table_id) {
let (table, blob_store, _) = self.state.get_table_and_blob_store(table_id)?;
let (table, blob_store, _) = self.state.get_table_and_blob_store(ST_TABLE_ID)?;
// SAFETY: `row_ptr` is stored in `self.replay_table_updated`,
// meaning it was inserted into `st_table` by `replay_insert`
// and has not yet been deleted by `replay_delete_by_rel`.
Expand Down
1 change: 1 addition & 0 deletions crates/dst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ fallocate = ["spacetimedb-commitlog/fallocate"]
[dependencies]
anyhow.workspace = true
clap.workspace = true
futures.workspace = true
spacetimedb-datastore.workspace = true
spacetimedb-commitlog.workspace = true
spacetimedb-durability.workspace = true
Expand Down
Loading
Loading