@@ -76,7 +76,7 @@ mod rdbms_types {
76
76
pg4:: DbValue :: Str ( s) => v1:: rdbms_types:: DbValue :: Str ( s) ,
77
77
pg4:: DbValue :: Binary ( b) => v1:: rdbms_types:: DbValue :: Binary ( b) ,
78
78
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 ,
80
80
_ => v1:: rdbms_types:: DbValue :: Unsupported ,
81
81
}
82
82
}
@@ -95,7 +95,7 @@ mod rdbms_types {
95
95
pg4:: DbValue :: Str ( s) => v2:: rdbms_types:: DbValue :: Str ( s) ,
96
96
pg4:: DbValue :: Binary ( b) => v2:: rdbms_types:: DbValue :: Binary ( b) ,
97
97
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 ,
99
99
_ => v2:: rdbms_types:: DbValue :: Unsupported ,
100
100
}
101
101
}
@@ -129,7 +129,7 @@ mod rdbms_types {
129
129
pg4:: DbValue :: ArrayStr ( _) => pg3:: DbValue :: Unsupported ,
130
130
pg4:: DbValue :: Interval ( _) => pg3:: DbValue :: Unsupported ,
131
131
pg4:: DbValue :: DbNull => pg3:: DbValue :: DbNull ,
132
- pg4:: DbValue :: Unsupported => pg3:: DbValue :: Unsupported ,
132
+ pg4:: DbValue :: Unsupported ( _ ) => pg3:: DbValue :: Unsupported ,
133
133
}
134
134
}
135
135
}
@@ -146,7 +146,7 @@ mod rdbms_types {
146
146
pg4:: DbDataType :: Floating64 => v1:: rdbms_types:: DbDataType :: Floating64 ,
147
147
pg4:: DbDataType :: Str => v1:: rdbms_types:: DbDataType :: Str ,
148
148
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 ,
150
150
_ => v1:: rdbms_types:: DbDataType :: Other ,
151
151
}
152
152
}
@@ -164,7 +164,7 @@ mod rdbms_types {
164
164
pg4:: DbDataType :: Floating64 => v2:: rdbms_types:: DbDataType :: Floating64 ,
165
165
pg4:: DbDataType :: Str => v2:: rdbms_types:: DbDataType :: Str ,
166
166
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 ,
168
168
_ => v2:: rdbms_types:: DbDataType :: Other ,
169
169
}
170
170
}
@@ -197,7 +197,7 @@ mod rdbms_types {
197
197
pg4:: DbDataType :: ArrayDecimal => pg3:: DbDataType :: Other ,
198
198
pg4:: DbDataType :: ArrayStr => pg3:: DbDataType :: Other ,
199
199
pg4:: DbDataType :: Interval => pg3:: DbDataType :: Other ,
200
- pg4:: DbDataType :: Other => pg3:: DbDataType :: Other ,
200
+ pg4:: DbDataType :: Other ( _ ) => pg3:: DbDataType :: Other ,
201
201
}
202
202
}
203
203
}
0 commit comments