mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-12-18 05:56:35 +00:00
Remove Row
.
This commit is contained in:
parent
d54f33858d
commit
9e75751b6b
1 changed files with 8 additions and 14 deletions
|
@ -79,12 +79,7 @@ struct ConfirmedSubscriber {
|
|||
async fn get_confirmed_subscribers(
|
||||
pool: &PgPool,
|
||||
) -> Result<Vec<Result<ConfirmedSubscriber, anyhow::Error>>, anyhow::Error> {
|
||||
struct Row {
|
||||
email: String,
|
||||
}
|
||||
|
||||
let rows = sqlx::query_as!(
|
||||
Row,
|
||||
let confirmed_subscribers = sqlx::query!(
|
||||
r#"
|
||||
SELECT email
|
||||
FROM subscriptions
|
||||
|
@ -92,8 +87,7 @@ async fn get_confirmed_subscribers(
|
|||
"#,
|
||||
)
|
||||
.fetch_all(pool)
|
||||
.await?;
|
||||
let confirmed_subscribers = rows
|
||||
.await?
|
||||
.into_iter()
|
||||
.map(|r| match SubscriberEmail::parse(r.email) {
|
||||
Ok(email) => Ok(ConfirmedSubscriber { email }),
|
||||
|
|
Loading…
Reference in a new issue