From d212b62ce5b064397cc9df1778088ed02fe66eca Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Fri, 3 Sep 2021 14:34:20 +0800 Subject: [PATCH] Fixup --- src/executor/query.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/executor/query.rs b/src/executor/query.rs index a817a9ce..f16a420c 100644 --- a/src/executor/query.rs +++ b/src/executor/query.rs @@ -59,9 +59,9 @@ impl fmt::Debug for QueryResultRow { #[cfg(feature = "sqlx-mysql")] Self::SqlxMySql(row) => write!(f, "{:?}", row), #[cfg(feature = "sqlx-postgres")] - Self::SqlxPostgres(_) => write!("QueryResultRow::SqlxPostgres cannot be inspected"), + Self::SqlxPostgres(_) => write!(f, "QueryResultRow::SqlxPostgres cannot be inspected"), #[cfg(feature = "sqlx-sqlite")] - Self::SqlxSqlite(_) => write!("QueryResultRow::SqlxSqlite cannot be inspected"), + Self::SqlxSqlite(_) => write!(f, "QueryResultRow::SqlxSqlite cannot be inspected"), #[cfg(feature = "mock")] Self::Mock(row) => write!(f, "{:?}", row), }