The oid column is now shown for tables that are "with oids".
This commit is contained in:
parent
172e2bcd1d
commit
7051ef2efc
5 changed files with 23 additions and 9 deletions
|
|
@ -123,6 +123,11 @@ QVariant TablesTableModel::getData(const QModelIndex &index) const
|
|||
return v;
|
||||
}
|
||||
|
||||
PgClass TablesTableModel::getTable(int row) const
|
||||
{
|
||||
return m_tables[row];
|
||||
}
|
||||
|
||||
Oid TablesTableModel::getTableOid(int row) const
|
||||
{
|
||||
return m_tables[row].oid;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue