Ensure that the children of information_schema and pg_catalog node should be displayed. Fixes #7587
parent
c2b23465cc
commit
e1fa1b0396
|
@ -32,3 +32,4 @@ Bug fixes
|
|||
| `Issue #7563 <https://redmine.postgresql.org/issues/7563>`_ - Fixed an issue where autocomplete is not working after clearing the query editor.
|
||||
| `Issue #7573 <https://redmine.postgresql.org/issues/7573>`_ - Ensure that autocomplete does not appear when navigating code using arrow keys.
|
||||
| `Issue #7586 <https://redmine.postgresql.org/issues/7586>`_ - Fixed an issue with rendering geometry when selecting a complete column.
|
||||
| `Issue #7587 <https://redmine.postgresql.org/issues/7587>`_ - Ensure that the children of information_schema and pg_catalog node should be displayed.
|
||||
|
|
|
@ -186,7 +186,7 @@ class CatalogModule(SchemaModule):
|
|||
Override the default register function to automagically register
|
||||
sub-modules at once.
|
||||
"""
|
||||
super(SchemaModule, self).register(app, options)
|
||||
super(CatalogModule, self).register(app, options)
|
||||
|
||||
|
||||
schema_blueprint = SchemaModule(__name__)
|
||||
|
|
Loading…
Reference in New Issue