Skip to content

Commit

Permalink
chore(MySql): Remove unnecessary box
Browse files Browse the repository at this point in the history
  • Loading branch information
joeydewaal committed Jan 27, 2025
1 parent 6fa0458 commit f801fd3
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 f801fd3

Please sign in to comment.