Skip to content

Commit

Permalink
Merge pull request #61 from mfzl/fix/resumption-state-field-visibility
Browse files Browse the repository at this point in the history
fix: set pipeline resumption state props public
  • Loading branch information
imor authored Nov 25, 2024
2 parents 9d994ed + dc41433 commit 450d885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pg_replicate/src/pipeline/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ pub enum PipelineError {
}

pub struct PipelineResumptionState {
copied_tables: HashSet<TableId>,
last_lsn: PgLsn,
pub copied_tables: HashSet<TableId>,
pub last_lsn: PgLsn,
}

0 comments on commit 450d885

Please sign in to comment.