Skip to content

Commit 4a52fed

Browse files
committed
Fix clippy warning
1 parent da23f3e commit 4a52fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion-postgres/src/pg_catalog/pg_roles.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl PgRolesTable {
6969
let mut oid: Vec<i32> = Vec::new();
7070

7171
for role_name in &this.auth_manager.list_roles().await {
72-
let role = &this.auth_manager.get_role(&role_name).await.unwrap();
72+
let role = &this.auth_manager.get_role(role_name).await.unwrap();
7373
rolname.push(role.name.clone());
7474
rolsuper.push(role.is_superuser);
7575
rolinherit.push(true);

0 commit comments

Comments
 (0)