Hi,
I'm using the Windows 64bit version of the latest Community DBeaver 3.1.2. I've got the effect that DBeaver does only list indexes on H2 and Postgres DBs in case table names and indexes are both in upper case letters only.
Is this a known bug?
Other tools like SQuirreL are able to list all indexes.
Example indexes which are not listed:
create PRIMARY KEY PRIMARY_KEY_6 ON DataPool(id);
create INDEX FK_DataPool_Tenant_INDEX_6 ON DataPool(tid);
create UNIQUE INDEX UK_DataPool_name_tid_INDEX_6 ON DataPool(name)
create UNIQUE INDEX UK_DataPool_name_tid_INDEX_6 ON DataPool(tid);
Displayed indexes, e.g.:
create INDEX ACT_IDX_HI_DETAIL_ACT_INST ON ACT_HI_DETAIL(ACT_INST_ID_);
Thanks!