@@ -76,7 +76,7 @@ mod rdbms_types {
7676 pg4:: DbValue :: Str ( s) => v1:: rdbms_types:: DbValue :: Str ( s) ,
7777 pg4:: DbValue :: Binary ( b) => v1:: rdbms_types:: DbValue :: Binary ( b) ,
7878 pg4:: DbValue :: DbNull => v1:: rdbms_types:: DbValue :: DbNull ,
79- pg4:: DbValue :: Unsupported => v1:: rdbms_types:: DbValue :: Unsupported ,
79+ pg4:: DbValue :: Unsupported ( _ ) => v1:: rdbms_types:: DbValue :: Unsupported ,
8080 _ => v1:: rdbms_types:: DbValue :: Unsupported ,
8181 }
8282 }
@@ -95,7 +95,7 @@ mod rdbms_types {
9595 pg4:: DbValue :: Str ( s) => v2:: rdbms_types:: DbValue :: Str ( s) ,
9696 pg4:: DbValue :: Binary ( b) => v2:: rdbms_types:: DbValue :: Binary ( b) ,
9797 pg4:: DbValue :: DbNull => v2:: rdbms_types:: DbValue :: DbNull ,
98- pg4:: DbValue :: Unsupported => v2:: rdbms_types:: DbValue :: Unsupported ,
98+ pg4:: DbValue :: Unsupported ( _ ) => v2:: rdbms_types:: DbValue :: Unsupported ,
9999 _ => v2:: rdbms_types:: DbValue :: Unsupported ,
100100 }
101101 }
@@ -129,7 +129,7 @@ mod rdbms_types {
129129 pg4:: DbValue :: ArrayStr ( _) => pg3:: DbValue :: Unsupported ,
130130 pg4:: DbValue :: Interval ( _) => pg3:: DbValue :: Unsupported ,
131131 pg4:: DbValue :: DbNull => pg3:: DbValue :: DbNull ,
132- pg4:: DbValue :: Unsupported => pg3:: DbValue :: Unsupported ,
132+ pg4:: DbValue :: Unsupported ( _ ) => pg3:: DbValue :: Unsupported ,
133133 }
134134 }
135135 }
@@ -146,7 +146,7 @@ mod rdbms_types {
146146 pg4:: DbDataType :: Floating64 => v1:: rdbms_types:: DbDataType :: Floating64 ,
147147 pg4:: DbDataType :: Str => v1:: rdbms_types:: DbDataType :: Str ,
148148 pg4:: DbDataType :: Binary => v1:: rdbms_types:: DbDataType :: Binary ,
149- pg4:: DbDataType :: Other => v1:: rdbms_types:: DbDataType :: Other ,
149+ pg4:: DbDataType :: Other ( _ ) => v1:: rdbms_types:: DbDataType :: Other ,
150150 _ => v1:: rdbms_types:: DbDataType :: Other ,
151151 }
152152 }
@@ -164,7 +164,7 @@ mod rdbms_types {
164164 pg4:: DbDataType :: Floating64 => v2:: rdbms_types:: DbDataType :: Floating64 ,
165165 pg4:: DbDataType :: Str => v2:: rdbms_types:: DbDataType :: Str ,
166166 pg4:: DbDataType :: Binary => v2:: rdbms_types:: DbDataType :: Binary ,
167- pg4:: DbDataType :: Other => v2:: rdbms_types:: DbDataType :: Other ,
167+ pg4:: DbDataType :: Other ( _ ) => v2:: rdbms_types:: DbDataType :: Other ,
168168 _ => v2:: rdbms_types:: DbDataType :: Other ,
169169 }
170170 }
@@ -197,7 +197,7 @@ mod rdbms_types {
197197 pg4:: DbDataType :: ArrayDecimal => pg3:: DbDataType :: Other ,
198198 pg4:: DbDataType :: ArrayStr => pg3:: DbDataType :: Other ,
199199 pg4:: DbDataType :: Interval => pg3:: DbDataType :: Other ,
200- pg4:: DbDataType :: Other => pg3:: DbDataType :: Other ,
200+ pg4:: DbDataType :: Other ( _ ) => pg3:: DbDataType :: Other ,
201201 }
202202 }
203203 }
0 commit comments