AlterOperatorFamilyOperation in sqlparser::ast - Rust

Enum AlterOperatorFamilyOperation 

Source

pub enum AlterOperatorFamilyOperation {
    Add {
        items: Vec<OperatorFamilyItem>,
    },
    Drop {
        items: Vec<OperatorFamilyDropItem>,
    },
    RenameTo {
        new_name: ObjectName,
    },
    OwnerTo(Owner),
    SetSchema {
        schema_name: ObjectName,
    },
}
Expand description
§

ADD { OPERATOR ... | FUNCTION ... } [, ...]

Fields

List of operator family items to add

§

DROP { OPERATOR ... | FUNCTION ... } [, ...]

Fields

List of operator family items to drop

§

RENAME TO new_name

Fields

The new name for the operator family.

§

OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }

§

SET SCHEMA new_schema

Fields

§
§
§
§
§
§