Struct postgres_replication_types::types::TruncateMessage
source · pub struct TruncateMessage {
pub transaction_id: Option<i32>,
pub relations_count: i32,
pub is_cascade: bool,
pub is_restart_identity: bool,
pub oid: i32,
}
Fields§
§transaction_id: Option<i32>
Xid of the transaction (only present for streamed transactions).
NOTE: This field is available since protocol version 2.
relations_count: i32
Number of relations
is_cascade: bool
Is CASCADE
?
is_restart_identity: bool
Is RESTART IDENTITY
?
oid: i32
OID of the relation corresponding to the ID in the relation message.