Skip to content

Commit edb6348

Browse files
committed
fix a compilation failure
1 parent b160021 commit edb6348

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/commands/uninstall.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use anyhow::Context;
2-
use sqlx::postgres::PgConnection;
2+
use sqlx::postgres::{PgConnection, PgRow};
33
use sqlx::Row;
44

55
pub async fn uninstall(extension_name: &str, mut conn: PgConnection) -> anyhow::Result<()> {
66
let quoted_extension_name: String = sqlx::query("select quote_ident($1) as ident")
77
.bind(extension_name)
8-
.map(|row| row.get("ident"))
8+
.map(|row: PgRow| row.get("ident"))
99
.fetch_one(&mut conn)
1010
.await
1111
.context("Failed to get quoted identifier")?;

0 commit comments

Comments
 (0)