@@ -60,22 +60,22 @@ pub use self::dcl::{
6060} ;
6161pub use self :: ddl:: {
6262 Alignment , AlterColumnOperation , AlterConnectorOwner , AlterIndexOperation , AlterOperator ,
63- AlterOperatorClass , AlterOperatorClassOperation , AlterOperatorFamily , AlterOperatorFamilyOperation , AlterOperatorOperation ,
64- AlterPolicyOperation , AlterSchema , AlterSchemaOperation , AlterTable , AlterTableAlgorithm ,
65- AlterTableLock , AlterTableOperation , AlterTableType , AlterType , AlterTypeAddValue ,
66- AlterTypeAddValuePosition , AlterTypeOperation , AlterTypeRename , AlterTypeRenameValue ,
67- ClusteredBy , ColumnDef , ColumnOption , ColumnOptionDef , ColumnOptions , ColumnPolicy ,
68- ColumnPolicyProperty , ConstraintCharacteristics , CreateConnector , CreateDomain ,
69- CreateExtension , CreateFunction , CreateIndex , CreateOperator , CreateOperatorClass ,
70- CreateOperatorFamily , CreateTable , CreateTrigger , CreateView , Deduplicate , DeferrableInitial ,
71- DropBehavior , DropExtension , DropFunction , DropOperator , DropOperatorClass , DropOperatorFamily ,
72- DropOperatorSignature , DropTrigger , ForValues , GeneratedAs , GeneratedExpressionMode ,
73- IdentityParameters , IdentityProperty , IdentityPropertyFormatKind , IdentityPropertyKind ,
74- IdentityPropertyOrder , IndexColumn , IndexOption , IndexType , KeyOrIndexDisplay , Msck ,
75- NullsDistinctOption , OperatorArgTypes , OperatorClassItem , OperatorFamilyDropItem ,
76- OperatorFamilyItem , OperatorOption , OperatorPurpose , Owner , Partition , PartitionBoundValue ,
77- ProcedureParam , ReferentialAction , RenameTableNameKind , ReplicaIdentity , TagsColumnOption ,
78- TriggerObjectKind , Truncate , UserDefinedTypeCompositeAttributeDef ,
63+ AlterOperatorClass , AlterOperatorClassOperation , AlterOperatorFamily ,
64+ AlterOperatorFamilyOperation , AlterOperatorOperation , AlterPolicyOperation , AlterSchema ,
65+ AlterSchemaOperation , AlterTable , AlterTableAlgorithm , AlterTableLock , AlterTableOperation ,
66+ AlterTableType , AlterType , AlterTypeAddValue , AlterTypeAddValuePosition , AlterTypeOperation ,
67+ AlterTypeRename , AlterTypeRenameValue , ClusteredBy , ColumnDef , ColumnOption , ColumnOptionDef ,
68+ ColumnOptions , ColumnPolicy , ColumnPolicyProperty , ConstraintCharacteristics , CreateConnector ,
69+ CreateDomain , CreateExtension , CreateFunction , CreateIndex , CreateOperator ,
70+ CreateOperatorClass , CreateOperatorFamily , CreateTable , CreateTrigger , CreateView , Deduplicate ,
71+ DeferrableInitial , DropBehavior , DropExtension , DropFunction , DropOperator , DropOperatorClass ,
72+ DropOperatorFamily , DropOperatorSignature , DropTrigger , ForValues , GeneratedAs ,
73+ GeneratedExpressionMode , IdentityParameters , IdentityProperty , IdentityPropertyFormatKind ,
74+ IdentityPropertyKind , IdentityPropertyOrder , IndexColumn , IndexOption , IndexType ,
75+ KeyOrIndexDisplay , Msck , NullsDistinctOption , OperatorArgTypes , OperatorClassItem ,
76+ OperatorFamilyDropItem , OperatorFamilyItem , OperatorOption , OperatorPurpose , Owner , Partition ,
77+ PartitionBoundValue , ProcedureParam , ReferentialAction , RenameTableNameKind , ReplicaIdentity ,
78+ TagsColumnOption , TriggerObjectKind , Truncate , UserDefinedTypeCompositeAttributeDef ,
7979 UserDefinedTypeInternalLength , UserDefinedTypeRangeOption , UserDefinedTypeRepresentation ,
8080 UserDefinedTypeSqlDefinitionOption , UserDefinedTypeStorage , ViewColumnDef ,
8181} ;
@@ -9177,8 +9177,8 @@ pub enum CopyLegacyOption {
91779177 Json ( Option < String > ) ,
91789178 /// MANIFEST \[ VERBOSE \]
91799179 Manifest {
9180- /// Whether the MANIFEST is verbose.
9181- verbose : bool
9180+ /// Whether the MANIFEST is verbose.
9181+ verbose : bool ,
91829182 } ,
91839183 /// MAXFILESIZE \[ AS \] max-size \[ MB | GB \]
91849184 MaxFileSize ( FileSize ) ,
@@ -9717,7 +9717,9 @@ impl fmt::Display for FunctionBehavior {
97179717#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
97189718#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
97199719pub enum FunctionSecurity {
9720+ /// Execute the function with the privileges of the user who defined it.
97209721 Definer ,
9722+ /// Execute the function with the privileges of the user who invokes it.
97219723 Invoker ,
97229724}
97239725
@@ -9750,7 +9752,9 @@ pub enum FunctionSetValue {
97509752#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
97519753#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
97529754pub struct FunctionDefinitionSetParam {
9755+ /// The name of the configuration parameter.
97539756 pub name : Ident ,
9757+ /// The value to set for the parameter.
97549758 pub value : FunctionSetValue ,
97559759}
97569760
0 commit comments