mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-23 23:13:38 -06:00
Fixed an issue where duplicate columns are visible in the browser tree, which is owned by two sequences. Fixes #6413
This commit is contained in:
parent
3a2145e5fa
commit
aa9a4c30d3
@ -25,5 +25,6 @@ Bug fixes
|
|||||||
| `Issue #6377 <https://redmine.postgresql.org/issues/6377>`_ - Fixed an issue where schema diff does not create DROP DEFAULT statement for columns.
|
| `Issue #6377 <https://redmine.postgresql.org/issues/6377>`_ - Fixed an issue where schema diff does not create DROP DEFAULT statement for columns.
|
||||||
| `Issue #6385 <https://redmine.postgresql.org/issues/6385>`_ - Ensure that Backup and Restore should work on shared servers.
|
| `Issue #6385 <https://redmine.postgresql.org/issues/6385>`_ - Ensure that Backup and Restore should work on shared servers.
|
||||||
| `Issue #6408 <https://redmine.postgresql.org/issues/6408>`_ - Fixed ModuleNotFoundError when running setup.py from outside of the root.
|
| `Issue #6408 <https://redmine.postgresql.org/issues/6408>`_ - Fixed ModuleNotFoundError when running setup.py from outside of the root.
|
||||||
|
| `Issue #6413 <https://redmine.postgresql.org/issues/6413>`_ - Fixed an issue where duplicate columns are visible in the browser tree, which is owned by two sequences.
|
||||||
| `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node.
|
| `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node.
|
||||||
| `Issue #6417 <https://redmine.postgresql.org/issues/6417>`_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button.
|
| `Issue #6417 <https://redmine.postgresql.org/issues/6417>`_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
SELECT att.attname as name, att.attnum as OID, pg_catalog.format_type(ty.oid,NULL) AS datatype,
|
SELECT DISTINCT att.attname as name, att.attnum as OID, pg_catalog.format_type(ty.oid,NULL) AS datatype,
|
||||||
att.attnotnull as not_null, att.atthasdef as has_default_val
|
att.attnotnull as not_null, att.atthasdef as has_default_val
|
||||||
FROM pg_catalog.pg_attribute att
|
FROM pg_catalog.pg_attribute att
|
||||||
JOIN pg_catalog.pg_type ty ON ty.oid=atttypid
|
JOIN pg_catalog.pg_type ty ON ty.oid=atttypid
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
SELECT att.attname as name, att.attnum as OID, pg_catalog.format_type(ty.oid,NULL) AS datatype,
|
SELECT DISTINCT att.attname as name, att.attnum as OID, pg_catalog.format_type(ty.oid,NULL) AS datatype,
|
||||||
att.attnotnull as not_null, att.atthasdef as has_default_val
|
att.attnotnull as not_null, att.atthasdef as has_default_val
|
||||||
FROM pg_catalog.pg_attribute att
|
FROM pg_catalog.pg_attribute att
|
||||||
JOIN pg_catalog.pg_type ty ON ty.oid=atttypid
|
JOIN pg_catalog.pg_type ty ON ty.oid=atttypid
|
||||||
|
Loading…
Reference in New Issue
Block a user