mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-25 18:20:20 -06:00
Fix index node display on PG 10. Fixes #3180
This commit is contained in:
parent
1baddd5e9a
commit
61eb94a23c
@ -105,6 +105,7 @@ Bug fixes
|
||||
| `Bug #3157 <https://redmine.postgresql.org/issues/3157>`_ - Fix unicode handling in the external process tools and show the complete command in the process viewer
|
||||
| `Bug #3171 <https://redmine.postgresql.org/issues/3171>`_ - Runtime issue causing inability to scroll in File Selector with trackpad on OSX
|
||||
| `Bug #3176 <https://redmine.postgresql.org/issues/3176>`_ - Disable function statistics on Greenplum
|
||||
| `Bug #3180 <https://redmine.postgresql.org/issues/3180>`_ - Ensure Indexes are displayed on PG 10 tables
|
||||
| `Bug #3190 <https://redmine.postgresql.org/issues/3190>`_ - Skip tests where appropriate on GPDB
|
||||
| `Bug #3196 <https://redmine.postgresql.org/issues/3196>`_ - Ensure the file manager properly escapes file & directory names
|
||||
| `Bug #3197 <https://redmine.postgresql.org/issues/3197>`_ - Appropriately set the cookie path
|
||||
|
@ -77,7 +77,7 @@ class IndexesModule(CollectionNodeModule):
|
||||
|
||||
# In case of partitioned table return false.
|
||||
if 'tid' in kwargs and manager.version >= 100000:
|
||||
return backend_supported(self, manager, **kwargs)
|
||||
return not backend_supported(self, manager, **kwargs)
|
||||
|
||||
if 'vid' not in kwargs:
|
||||
return True
|
||||
|
Loading…
Reference in New Issue
Block a user