Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Jun 12, 2023
1 parent dae54d6 commit 921a76c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/storage/hummock_trace/src/collector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,7 @@ mod tests {
table_option: TracedTableOption {
retention_seconds: None,
},
is_replicated: false,
},
),
);
Expand Down
1 change: 1 addition & 0 deletions src/storage/hummock_trace/src/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ pub struct TracedNewLocalOptions {
pub table_id: TracedTableId,
pub is_consistent_op: bool,
pub table_option: TracedTableOption,
pub is_replicated: bool,
}

pub type TracedHummockEpoch = u64;
Expand Down
1 change: 1 addition & 0 deletions src/storage/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ impl From<TracedNewLocalOptions> for NewLocalOptions {
table_id: value.table_id.into(),
is_consistent_op: value.is_consistent_op,
table_option: value.table_option.into(),
is_replicated: value.is_replicated,
}
}
}
Expand Down

0 comments on commit 921a76c

Please sign in to comment.