Fix Pool alias with Pool changes

This commit is contained in:
Ryan Leckey 2020-01-15 00:26:22 -08:00
parent c13c1cc817
commit 2e5e273565
2 changed files with 2 additions and 2 deletions

View File

@ -25,4 +25,4 @@ pub use types::MySqlTypeInfo;
pub use row::MySqlRow;
/// An alias for [`Pool`], specialized for **MySQL**.
pub type MySqlPool = super::Pool<MySql>;
pub type MySqlPool = super::Pool<MySqlConnection>;

View File

@ -17,4 +17,4 @@ mod row;
mod types;
/// An alias for [`Pool`], specialized for **Postgres**.
pub type PgPool = super::Pool<Postgres>;
pub type PgPool = super::Pool<PgConnection>;