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 6fa0458 commit 6c2a29fCopy full SHA for 6c2a29f
sqlx-mysql/src/connection/executor.rs
@@ -111,7 +111,7 @@ impl MySqlConnection {
111
self.inner.stream.wait_until_ready().await?;
112
self.inner.stream.waiting.push_back(Waiting::Result);
113
114
- Ok(Box::pin(try_stream! {
+ Ok(try_stream! {
115
// make a slot for the shared column data
116
// as long as a reference to a row is not held past one iteration, this enables us
117
// to re-use this memory freely between result sets
@@ -240,7 +240,7 @@ impl MySqlConnection {
240
r#yield!(v);
241
}
242
243
- }))
+ })
244
245
246
0 commit comments