pub enum AlterSinkOperation {
    RenameSink {
        sink_name: ObjectName,
    },
    ChangeOwner {
        new_owner_name: Ident,
    },
    SetSchema {
        new_schema_name: ObjectName,
    },
    SetParallelism {
        parallelism: SetVariableValue,
        deferred: bool,
    },
    SwapRenameSink {
        target_sink: ObjectName,
    },
    SetSinkRateLimit {
        rate_limit: i32,
    },
    AlterConnectorProps {
        alter_props: Vec<SqlOption>,
    },
    SetStreamingEnableUnalignedJoin {
        enable: bool,
    },
}Variants§
RenameSink
Fields
§
sink_name: ObjectNameChangeOwner
SetSchema
Fields
§
new_schema_name: ObjectNameSetParallelism
SET PARALLELISM TO <parallelism> [ DEFERRED ]
SwapRenameSink
SWAP WITH <sink_name>
Fields
§
target_sink: ObjectNameSetSinkRateLimit
AlterConnectorProps
SetStreamingEnableUnalignedJoin
Trait Implementations§
Source§impl Clone for AlterSinkOperation
 
impl Clone for AlterSinkOperation
Source§fn clone(&self) -> AlterSinkOperation
 
fn clone(&self) -> AlterSinkOperation
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 AlterSinkOperation
 
impl Debug for AlterSinkOperation
Source§impl Display for AlterSinkOperation
 
impl Display for AlterSinkOperation
Source§impl Hash for AlterSinkOperation
 
impl Hash for AlterSinkOperation
Source§impl PartialEq for AlterSinkOperation
 
impl PartialEq for AlterSinkOperation
impl Eq for AlterSinkOperation
impl StructuralPartialEq for AlterSinkOperation
Auto Trait Implementations§
impl Freeze for AlterSinkOperation
impl RefUnwindSafe for AlterSinkOperation
impl Send for AlterSinkOperation
impl Sync for AlterSinkOperation
impl Unpin for AlterSinkOperation
impl UnwindSafe for AlterSinkOperation
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,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more