Skip to content

Commit 352310b

Browse files
committed
fix: run rustfmt
1 parent 80359d1 commit 352310b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

sqlx-postgres/src/connection/describe.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,14 @@ impl PgConnection {
186186

187187
fn fetch_type_by_oid(&mut self, oid: Oid) -> BoxFuture<'_, Result<PgTypeInfo, Error>> {
188188
Box::pin(async move {
189-
let (name, typ_type, category, relation_id, element, base_type): (String, i8, i8, Oid, Oid, Oid) = query_as(
189+
let (name, typ_type, category, relation_id, element, base_type): (
190+
String,
191+
i8,
192+
i8,
193+
Oid,
194+
Oid,
195+
Oid,
196+
) = query_as(
190197
// Converting the OID to `regtype` and then `text` will give us the name that
191198
// the type will need to be found at by search_path.
192199
"SELECT oid::regtype::text, \

0 commit comments

Comments
 (0)