mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-06 05:42:38 +00:00
chore(MySql): Remove unnecessary box (#3708)
This commit is contained in:
parent
6fa0458ff3
commit
6c2a29f67e
@ -111,7 +111,7 @@ impl MySqlConnection {
|
||||
self.inner.stream.wait_until_ready().await?;
|
||||
self.inner.stream.waiting.push_back(Waiting::Result);
|
||||
|
||||
Ok(Box::pin(try_stream! {
|
||||
Ok(try_stream! {
|
||||
// make a slot for the shared column data
|
||||
// as long as a reference to a row is not held past one iteration, this enables us
|
||||
// to re-use this memory freely between result sets
|
||||
@ -240,7 +240,7 @@ impl MySqlConnection {
|
||||
r#yield!(v);
|
||||
}
|
||||
}
|
||||
}))
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user