Skip to content

Commit

Permalink
chore(MySql): Remove unnecessary box (#3708)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeydewaal authored Jan 27, 2025
1 parent 6fa0458 commit 6c2a29f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlx-mysql/src/connection/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -240,7 +240,7 @@ impl MySqlConnection {
r#yield!(v);
}
}
}))
})
}
}

Expand Down

0 comments on commit 6c2a29f

Please sign in to comment.