pub enum PostgresWriteMode {
Materialized,
Cdc,
}Expand description
PostgreSQL write mode.
Determines how the PostgreSQL output connector writes data to the target table.
Variants§
Materialized
Materialized mode: perform direct INSERT, UPDATE, and DELETE operations on the table. This is the default behavior and maintains the postgres table as a materialized snapshot of the output view.
Cdc
CDC (Change Data Capture) mode: write all operations as INSERT operations into a Postgres table that serves as an append-only event log. In this mode, inserts, updates, and deletes are all represented as new rows with metadata columns describing the operation type and timestamp.
Trait Implementations§
Source§impl Clone for PostgresWriteMode
impl Clone for PostgresWriteMode
Source§fn clone(&self) -> PostgresWriteMode
fn clone(&self) -> PostgresWriteMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PostgresWriteMode
impl Debug for PostgresWriteMode
Source§impl Default for PostgresWriteMode
impl Default for PostgresWriteMode
Source§fn default() -> PostgresWriteMode
fn default() -> PostgresWriteMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostgresWriteMode
impl<'de> Deserialize<'de> for PostgresWriteMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PostgresWriteMode
impl Display for PostgresWriteMode
Source§impl PartialEq for PostgresWriteMode
impl PartialEq for PostgresWriteMode
Source§impl Serialize for PostgresWriteMode
impl Serialize for PostgresWriteMode
Source§impl<'__s> ToSchema<'__s> for PostgresWriteMode
impl<'__s> ToSchema<'__s> for PostgresWriteMode
impl Eq for PostgresWriteMode
impl StructuralPartialEq for PostgresWriteMode
Auto Trait Implementations§
impl Freeze for PostgresWriteMode
impl RefUnwindSafe for PostgresWriteMode
impl Send for PostgresWriteMode
impl Sync for PostgresWriteMode
impl Unpin for PostgresWriteMode
impl UnwindSafe for PostgresWriteMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.