From 352310ba3477eb0b4402381a8683ed3eb24f27e3 Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Fri, 31 May 2024 13:37:43 -0700 Subject: [PATCH] fix: run `rustfmt` --- sqlx-postgres/src/connection/describe.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sqlx-postgres/src/connection/describe.rs b/sqlx-postgres/src/connection/describe.rs index 22fb0a753..37952b8a8 100644 --- a/sqlx-postgres/src/connection/describe.rs +++ b/sqlx-postgres/src/connection/describe.rs @@ -186,7 +186,14 @@ impl PgConnection { fn fetch_type_by_oid(&mut self, oid: Oid) -> BoxFuture<'_, Result> { Box::pin(async move { - let (name, typ_type, category, relation_id, element, base_type): (String, i8, i8, Oid, Oid, Oid) = query_as( + let (name, typ_type, category, relation_id, element, base_type): ( + String, + i8, + i8, + Oid, + Oid, + Oid, + ) = query_as( // Converting the OID to `regtype` and then `text` will give us the name that // the type will need to be found at by search_path. "SELECT oid::regtype::text, \