chore(MySql): Remove unnecessary box (#3708)

This commit is contained in:
joeydewaal 2025-01-27 22:41:07 +01:00 committed by GitHub
parent 6fa0458ff3
commit 6c2a29f67e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}
}
}))
})
}
}