diff --git a/docs/en_US/release_notes_4_13.rst b/docs/en_US/release_notes_4_13.rst index 88607ef75..45ceaf5e8 100644 --- a/docs/en_US/release_notes_4_13.rst +++ b/docs/en_US/release_notes_4_13.rst @@ -24,6 +24,7 @@ Bug fixes | `Issue #2706 `_ - Added ProjectSet icon for explain module. | `Issue #2828 `_ - Added Gather Merge, Named Tuple Store Scan and Table Function Scan icon for explain module. | `Issue #4419 `_ - Fix a debugger error when using Python 2.7. +| `Issue #4577 `_ - Fix an error that could be seen when click on any system column of a table. | `Issue #4584 `_ - Unescape HTML entities in database names in the Query Tool title bar. | `Issue #4643 `_ - Fix Truncate option deselect issue for compound triggers. | `Issue #4644 `_ - Fix length and precision enable/disable issue when changing the data type for Domain node. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/columns/__init__.py b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/columns/__init__.py index 28420fa9e..cfa653c7c 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/columns/__init__.py +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/columns/__init__.py @@ -970,9 +970,15 @@ class ColumnsView(PGChildNodeView, DataTypeReader): clid: Column ID """ + + # Specific condition for column which we need to append + where = "WHERE dep.objid={0}::OID AND dep.objsubid={1}".format( + tid, clid + ) + # Specific condition for column which we need to append dependencies_result = self.get_dependencies( - self.conn, clid + self.conn, clid, where ) return ajax_response(