Safely store passwords #79

Merged
eelke merged 8 commits from safely-store-passwords into master 2018-11-10 06:50:10 +00:00
Showing only changes of commit eefcb8fd51 - Show all commits

View file

@ -75,9 +75,13 @@ QString getTablespaceDisplayString(const PgDatabaseCatalog &cat, Oid oid)
if (oid == 0) {
auto dbname = cat.getDBName();
oid = cat.databases()->getByName(dbname).tablespace;
auto ts = cat.tablespaces()->getByKey(oid);
return ts.name + " (inherited)";
}
else {
auto ts = cat.tablespaces()->getByKey(oid);
return ts.name;
}
auto ts = cat.tablespaces()->getByKey(oid);
return ts.name;
}
QString getTypeDisplayString(const PgDatabaseCatalog &cat, Oid oid, int32_t typmod)