Fix index node display on PG 10. Fixes #3180

This commit is contained in:
Akshay Joshi 2018-03-29 15:09:29 +02:00 committed by Dave Page
parent 1baddd5e9a
commit 61eb94a23c
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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