Removed the acl field from several Pg* classes as the acl is now stored in the PgServerObject base class they inherit from.
This commit is contained in:
parent
aaa05f64ef
commit
93687df959
12 changed files with 30 additions and 30 deletions
|
|
@ -15,7 +15,12 @@ PgDatabase PgDatabaseContainer::loadElem(const Pgsql::Row &row)
|
|||
QString name = col.nextValue();
|
||||
PgDatabase v(m_catalog, oid, name);
|
||||
col >> v.dba >> v.encoding >> v.collate >> v.ctype >> v.isTemplate
|
||||
>> v.allowConn >> v.connLimit >> v.tablespace >> v.acl;
|
||||
>> v.allowConn >> v.connLimit >> v.tablespace;
|
||||
|
||||
AclList acl_list;
|
||||
col >> acl_list;
|
||||
v.setAcls(std::move(acl_list));
|
||||
|
||||
return v;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue