We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da23f3e commit 4a52fedCopy full SHA for 4a52fed
datafusion-postgres/src/pg_catalog/pg_roles.rs
@@ -69,7 +69,7 @@ impl PgRolesTable {
69
let mut oid: Vec<i32> = Vec::new();
70
71
for role_name in &this.auth_manager.list_roles().await {
72
- let role = &this.auth_manager.get_role(&role_name).await.unwrap();
+ let role = &this.auth_manager.get_role(role_name).await.unwrap();
73
rolname.push(role.name.clone());
74
rolsuper.push(role.is_superuser);
75
rolinherit.push(true);
0 commit comments