In the list of columns displayed for a table a set of columns is appended describing the indexes on the table.
This commit is contained in:
parent
aef9b914b1
commit
172e2bcd1d
9 changed files with 95 additions and 43 deletions
|
|
@ -2,7 +2,9 @@
|
|||
#define COLUMNTABLEMODEL_H
|
||||
|
||||
#include "BaseTableModel.h"
|
||||
#include "PgIndex.h"
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
class PgDatabaseCatalog;
|
||||
class PgAttribute;
|
||||
|
|
@ -38,6 +40,7 @@ protected:
|
|||
|
||||
std::shared_ptr<const PgDatabaseCatalog> m_catalog;
|
||||
t_Columns m_columns;
|
||||
std::vector<PgIndex> m_indexes;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue