Fixed an issue where the data type of the array type was not visible for the column in the Foreign Table dialog. #6962
parent
c9db4a0d16
commit
302e1acabd
|
@ -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 #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 #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.
|
||||
|
|
|
@ -1422,7 +1422,7 @@ class ForeignTableView(PGChildNodeView, DataTypeReader,
|
|||
|
||||
for column in cols:
|
||||
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['cltype'] = \
|
||||
DataTypeReader.parse_type_name(column['cltype'])
|
||||
|
|
Loading…
Reference in New Issue