@@ -381,7 +381,7 @@ impl fmt::Display for ObjectName {
381381}
382382
383383/// A single part of an ObjectName
384- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
384+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
385385#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
386386#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
387387pub enum ObjectNamePart {
@@ -727,7 +727,7 @@ pub enum CeilFloorKind {
727727
728728/// A WHEN clause in a CASE expression containing both
729729/// the condition and its corresponding result
730- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
730+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
731731#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
732732#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
733733pub struct CaseWhen {
@@ -6807,7 +6807,7 @@ impl fmt::Display for Action {
68076807 }
68086808}
68096809
6810- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6810+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
68116811#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
68126812#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
68136813/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6854,7 +6854,7 @@ impl fmt::Display for ActionCreateObjectType {
68546854 }
68556855}
68566856
6857- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6857+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
68586858#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
68596859#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
68606860/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6889,7 +6889,7 @@ impl fmt::Display for ActionApplyType {
68896889 }
68906890}
68916891
6892- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6892+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
68936893#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
68946894#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
68956895/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6914,7 +6914,7 @@ impl fmt::Display for ActionExecuteObjectType {
69146914 }
69156915}
69166916
6917- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6917+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
69186918#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
69196919#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
69206920/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6943,7 +6943,7 @@ impl fmt::Display for ActionManageType {
69436943 }
69446944}
69456945
6946- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6946+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
69476947#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
69486948#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
69496949/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6966,7 +6966,7 @@ impl fmt::Display for ActionModifyType {
69666966 }
69676967}
69686968
6969- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6969+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
69706970#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
69716971#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
69726972/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -9849,7 +9849,7 @@ impl fmt::Display for ShowStatementIn {
98499849 }
98509850}
98519851
9852- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
9852+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
98539853#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
98549854#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
98559855pub struct ShowObjects {
@@ -10055,7 +10055,7 @@ impl fmt::Display for SessionParamValue {
1005510055/// ```
1005610056///
1005710057/// <https://docs.snowflake.com/en/sql-reference/sql/create-iceberg-table>
10058- #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
10058+ #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
1005910059#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
1006010060#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
1006110061pub enum StorageSerializationPolicy {
@@ -10073,7 +10073,7 @@ impl Display for StorageSerializationPolicy {
1007310073}
1007410074
1007510075/// Variants of the Snowflake `COPY INTO` statement
10076- #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
10076+ #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
1007710077#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
1007810078#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
1007910079pub enum CopyIntoSnowflakeKind {
0 commit comments