Struct postgres_replication_types::types::CommitMessage
source · pub struct CommitMessage {
pub lsn: i64,
pub final_lsn: i64,
pub timestamp: DateTime<Utc>,
}
Fields§
§lsn: i64
The LSN of the commit.
final_lsn: i64
The final LSN of the transaction.
timestamp: DateTime<Utc>
Commit timestamp of the transaction.
Originally, the value is in number of microseconds since PostgreSQL epoch (2000-01-01).