pub enum AlterSourceOperation {
RenameSource {
source_name: ObjectName,
},
AddColumn {
column_def: ColumnDef,
},
ChangeOwner {
new_owner_name: Ident,
},
SetSchema {
new_schema_name: ObjectName,
},
FormatEncode {
format_encode: FormatEncodeOptions,
},
RefreshSchema,
SetSourceRateLimit {
rate_limit: i32,
},
SwapRenameSource {
target_source: ObjectName,
},
SetParallelism {
parallelism: SetVariableValue,
deferred: bool,
},
SetConfig {
entries: Vec<SqlOption>,
},
ResetConfig {
keys: Vec<ObjectName>,
},
AlterConnectorProps {
alter_props: Vec<SqlOption>,
},
}Variants§
RenameSource
Fields
§
source_name: ObjectNameAddColumn
ChangeOwner
SetSchema
Fields
§
new_schema_name: ObjectNameFormatEncode
Fields
§
format_encode: FormatEncodeOptionsRefreshSchema
SetSourceRateLimit
SwapRenameSource
Fields
§
target_source: ObjectNameSetParallelism
SET PARALLELISM TO <parallelism> [ DEFERRED ]
SetConfig
SET CONFIG (key = value, ...)
ResetConfig
RESET CONFIG (key, ...)
Fields
§
keys: Vec<ObjectName>AlterConnectorProps
Trait Implementations§
Source§impl Clone for AlterSourceOperation
impl Clone for AlterSourceOperation
Source§fn clone(&self) -> AlterSourceOperation
fn clone(&self) -> AlterSourceOperation
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 AlterSourceOperation
impl Debug for AlterSourceOperation
Source§impl Display for AlterSourceOperation
impl Display for AlterSourceOperation
Source§impl Hash for AlterSourceOperation
impl Hash for AlterSourceOperation
Source§impl PartialEq for AlterSourceOperation
impl PartialEq for AlterSourceOperation
impl Eq for AlterSourceOperation
impl StructuralPartialEq for AlterSourceOperation
Auto Trait Implementations§
impl Freeze for AlterSourceOperation
impl RefUnwindSafe for AlterSourceOperation
impl Send for AlterSourceOperation
impl Sync for AlterSourceOperation
impl Unpin for AlterSourceOperation
impl UnwindSafe for AlterSourceOperation
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