Skip to content

Commit 2e5e273

Browse files
committed
Fix Pool alias with Pool changes
1 parent c13c1cc commit 2e5e273

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqlx-core/src/mysql/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ pub use types::MySqlTypeInfo;
2525
pub use row::MySqlRow;
2626

2727
/// An alias for [`Pool`], specialized for **MySQL**.
28-
pub type MySqlPool = super::Pool<MySql>;
28+
pub type MySqlPool = super::Pool<MySqlConnection>;

sqlx-core/src/postgres/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ mod row;
1717
mod types;
1818

1919
/// An alias for [`Pool`], specialized for **Postgres**.
20-
pub type PgPool = super::Pool<Postgres>;
20+
pub type PgPool = super::Pool<PgConnection>;

0 commit comments

Comments
 (0)