@@ -328,7 +328,7 @@ impl fmt::Display for ObjectName {
328328}
329329
330330/// A single part of an ObjectName
331- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
331+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
332332#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
333333#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
334334pub enum ObjectNamePart {
@@ -644,7 +644,7 @@ pub enum CeilFloorKind {
644644
645645/// A WHEN clause in a CASE expression containing both
646646/// the condition and its corresponding result
647- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
647+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
648648#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
649649#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
650650pub struct CaseWhen {
@@ -5904,7 +5904,7 @@ impl fmt::Display for Action {
59045904 }
59055905}
59065906
5907- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
5907+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
59085908#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
59095909#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
59105910/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -5951,7 +5951,7 @@ impl fmt::Display for ActionCreateObjectType {
59515951 }
59525952}
59535953
5954- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
5954+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
59555955#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
59565956#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
59575957/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -5986,7 +5986,7 @@ impl fmt::Display for ActionApplyType {
59865986 }
59875987}
59885988
5989- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
5989+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
59905990#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
59915991#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
59925992/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6011,7 +6011,7 @@ impl fmt::Display for ActionExecuteObjectType {
60116011 }
60126012}
60136013
6014- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6014+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
60156015#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
60166016#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
60176017/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6040,7 +6040,7 @@ impl fmt::Display for ActionManageType {
60406040 }
60416041}
60426042
6043- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6043+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
60446044#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
60456045#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
60466046/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -6063,7 +6063,7 @@ impl fmt::Display for ActionModifyType {
60636063 }
60646064}
60656065
6066- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
6066+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
60676067#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
60686068#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
60696069/// See <https://docs.snowflake.com/en/sql-reference/sql/grant-privilege>
@@ -8571,7 +8571,7 @@ impl fmt::Display for ShowStatementIn {
85718571 }
85728572}
85738573
8574- #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8574+ #[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
85758575#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
85768576#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
85778577pub struct ShowObjects {
@@ -8777,7 +8777,7 @@ impl fmt::Display for SessionParamValue {
87778777/// ```
87788778///
87798779/// <https://docs.snowflake.com/en/sql-reference/sql/create-iceberg-table>
8780- #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8780+ #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
87818781#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
87828782#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
87838783pub enum StorageSerializationPolicy {
@@ -8795,7 +8795,7 @@ impl Display for StorageSerializationPolicy {
87958795}
87968796
87978797/// Variants of the Snowflake `COPY INTO` statement
8798- #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8798+ #[ derive( Debug , Copy , Clone , PartialEq , PartialOrd , Eq , Ord , Hash , DFConvert ) ]
87998799#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
88008800#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
88018801pub enum CopyIntoSnowflakeKind {
0 commit comments