Fixed an issue where the data type of the array type was not visible for the column in the Foreign Table dialog. #6962

pull/6976/head
Akshay Joshi 2023-11-16 17:49:26 +05:30
parent c9db4a0d16
commit 302e1acabd
2 changed files with 2 additions and 1 deletions

View File

@ -52,3 +52,4 @@ Bug fixes
| `Issue #6904 <https://github.com/pgadmin-org/pgadmin4/issues/6904>`_ - Fix a crash issue occurring when debugging a function with arguments when using pgAdmin with external config database. | `Issue #6904 <https://github.com/pgadmin-org/pgadmin4/issues/6904>`_ - Fix a crash issue occurring when debugging a function with arguments when using pgAdmin with external config database.
| `Issue #6920 <https://github.com/pgadmin-org/pgadmin4/issues/6920>`_ - Fix an issue in ERD tool where SQL generated is missing columns for the table. | `Issue #6920 <https://github.com/pgadmin-org/pgadmin4/issues/6920>`_ - Fix an issue in ERD tool where SQL generated is missing columns for the table.
| `Issue #6934 <https://github.com/pgadmin-org/pgadmin4/issues/6934>`_ - Clear the password field in the config database on clear saved server password. | `Issue #6934 <https://github.com/pgadmin-org/pgadmin4/issues/6934>`_ - Clear the password field in the config database on clear saved server password.
| `Issue #6962 <https://github.com/pgadmin-org/pgadmin4/issues/6962>`_ - Fixed an issue where the data type of the array type was not visible for the column in the Foreign Table dialog.

View File

@ -1422,7 +1422,7 @@ class ForeignTableView(PGChildNodeView, DataTypeReader,
for column in cols: for column in cols:
edit_type_list = edit_types[column['atttypid']] edit_type_list = edit_types[column['atttypid']]
edit_type_list.append(column['fulltype']) edit_type_list.append(column['cltype'])
column['edit_types'] = sorted(edit_type_list) column['edit_types'] = sorted(edit_type_list)
column['cltype'] = \ column['cltype'] = \
DataTypeReader.parse_type_name(column['cltype']) DataTypeReader.parse_type_name(column['cltype'])