diff --git a/sqlx-core/src/mysql/statement.rs b/sqlx-core/src/mysql/statement.rs index 53041c24..772a78e4 100644 --- a/sqlx-core/src/mysql/statement.rs +++ b/sqlx-core/src/mysql/statement.rs @@ -1,5 +1,6 @@ use super::MySqlColumn; +#[derive(Debug)] pub struct MySqlStatement { pub(crate) id: u32, pub(crate) columns: Vec, diff --git a/sqlx-core/src/postgres/statement.rs b/sqlx-core/src/postgres/statement.rs index bdfd88a7..10ee0970 100644 --- a/sqlx-core/src/postgres/statement.rs +++ b/sqlx-core/src/postgres/statement.rs @@ -1,5 +1,6 @@ use super::{PgColumn, PgTypeInfo}; +#[derive(Debug)] pub struct PgStatement { pub(crate) id: u32, pub(crate) columns: Vec,