We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c13c1cc commit 2e5e273Copy full SHA for 2e5e273
sqlx-core/src/mysql/mod.rs
@@ -25,4 +25,4 @@ pub use types::MySqlTypeInfo;
25
pub use row::MySqlRow;
26
27
/// An alias for [`Pool`], specialized for **MySQL**.
28
-pub type MySqlPool = super::Pool<MySql>;
+pub type MySqlPool = super::Pool<MySqlConnection>;
sqlx-core/src/postgres/mod.rs
@@ -17,4 +17,4 @@ mod row;
17
mod types;
18
19
/// An alias for [`Pool`], specialized for **Postgres**.
20
-pub type PgPool = super::Pool<Postgres>;
+pub type PgPool = super::Pool<PgConnection>;
0 commit comments