pub enum AggregateChange {
Create(Aggregate),
Replace {
from: Aggregate,
to: Aggregate,
},
Drop {
qname: QualifiedName,
arg_types: Vec<ColumnType>,
},
AlterOwner {
qname: QualifiedName,
arg_types: Vec<ColumnType>,
owner: Identifier,
},
CommentOn {
qname: QualifiedName,
arg_types: Vec<ColumnType>,
comment: Option<String>,
},
}Expand description
A change to a single aggregate (identity = (qname, arg_types)).
Variants§
Create(Aggregate)
CREATE AGGREGATE …
Replace
DROP AGGREGATE old; CREATE AGGREGATE new; — any structural change
(state_type/sfunc/finalfunc/initcond) has no in-place ALTER.
Fields
Drop
DROP AGGREGATE name (argtypes);
AlterOwner
ALTER AGGREGATE name (argtypes) OWNER TO owner;
Fields
§
qname: QualifiedNameAggregate name.
§
arg_types: Vec<ColumnType>Argument types (identity).
§
owner: IdentifierDesired owner.
CommentOn
COMMENT ON AGGREGATE name (argtypes) IS …;
Trait Implementations§
Source§impl Clone for AggregateChange
impl Clone for AggregateChange
Source§fn clone(&self) -> AggregateChange
fn clone(&self) -> AggregateChange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AggregateChange
impl Debug for AggregateChange
Source§impl<'de> Deserialize<'de> for AggregateChange
impl<'de> Deserialize<'de> for AggregateChange
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
impl Eq for AggregateChange
Source§impl PartialEq for AggregateChange
impl PartialEq for AggregateChange
Source§fn eq(&self, other: &AggregateChange) -> bool
fn eq(&self, other: &AggregateChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AggregateChange
impl Serialize for AggregateChange
impl StructuralPartialEq for AggregateChange
Auto Trait Implementations§
impl Freeze for AggregateChange
impl RefUnwindSafe for AggregateChange
impl Send for AggregateChange
impl Sync for AggregateChange
impl Unpin for AggregateChange
impl UnsafeUnpin for AggregateChange
impl UnwindSafe for AggregateChange
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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