Struct postgres_replication_types::types::InsertMessage
source · pub struct InsertMessage<'a> {
pub transaction_id: Option<i32>,
pub oid: i32,
pub data: TupleData<'a>,
}
Fields§
§transaction_id: Option<i32>
Xid of the transaction (only present for streamed transactions).
NOTE: This field is available since protocol version 2.
oid: i32
OID of the relation.
data: TupleData<'a>
TupleData
message part representing the contents of new tuple.