mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
fix(mysql): add missing type Database to Executor impl
This commit is contained in:
parent
5836e1eb63
commit
1b3e9a990f
@ -98,6 +98,8 @@ impl<Rt: Runtime> Connection<Rt> for MySqlConnection<Rt> {
|
||||
}
|
||||
|
||||
impl<Rt: Runtime> Executor<Rt> for MySqlConnection<Rt> {
|
||||
type Database = MySql;
|
||||
|
||||
#[cfg(feature = "async")]
|
||||
fn execute<'x, 'e, 'q>(&'e mut self, sql: &'q str) -> BoxFuture<'x, Result<()>>
|
||||
where
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user