mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-16 18:25:12 -06:00
Fixed an issue where the table showed duplicate columns when creating multiple sequences on the same column. Fixes #7307
This commit is contained in:
parent
e5ef6a7b21
commit
d336cade85
@ -38,4 +38,5 @@ Bug fixes
|
||||
| `Issue #7294 <https://redmine.postgresql.org/issues/7294>`_ - Fixed an issue where the copy and paste row does not work if the first column contains no data.
|
||||
| `Issue #7296 <https://redmine.postgresql.org/issues/7296>`_ - Ensure that after deleting multiple objects from the properties panel, the browser tree should be refreshed.
|
||||
| `Issue #7299 <https://redmine.postgresql.org/issues/7299>`_ - Fixed sorting issue in the statistics panel.
|
||||
| `Issue #7307 <https://redmine.postgresql.org/issues/7307>`_ - Fixed an issue where the table showed duplicate columns when creating multiple sequences on the same column.
|
||||
| `Issue #7308 <https://redmine.postgresql.org/issues/7308>`_ - Ensure that sorting should be preserved on refresh for Server Activity.
|
||||
|
@ -1,4 +1,4 @@
|
||||
SELECT att.attname as name, att.atttypid, att.attlen, att.attnum, att.attndims,
|
||||
SELECT DISTINCT ON (att.attnum) att.attname as name, att.atttypid, att.attlen, att.attnum, att.attndims,
|
||||
att.atttypmod, att.attacl, att.attnotnull, att.attoptions, att.attstattarget,
|
||||
att.attstorage, att.attidentity,
|
||||
pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS defval,
|
||||
|
@ -1,4 +1,4 @@
|
||||
SELECT att.attname as name, att.atttypid, att.attlen, att.attnum, att.attndims,
|
||||
SELECT DISTINCT ON (att.attnum) att.attname as name, att.atttypid, att.attlen, att.attnum, att.attndims,
|
||||
att.atttypmod, att.attacl, att.attnotnull, att.attoptions, att.attstattarget,
|
||||
att.attstorage, att.attidentity,
|
||||
pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS defval,
|
||||
|
@ -1,4 +1,4 @@
|
||||
SELECT att.attname as name, att.*, def.*, pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS defval,
|
||||
SELECT DISTINCT ON (att.attnum) att.attname as name, att.*, def.*, pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS defval,
|
||||
CASE WHEN att.attndims > 0 THEN 1 ELSE 0 END AS isarray,
|
||||
pg_catalog.format_type(ty.oid,NULL) AS typname,
|
||||
pg_catalog.format_type(ty.oid,att.atttypmod) AS displaytypname,
|
||||
|
@ -1,4 +1,4 @@
|
||||
SELECT att.attname as name, att.atttypid, att.attlen, att.attnum, att.attndims,
|
||||
SELECT DISTINCT ON (att.attnum) att.attname as name, att.atttypid, att.attlen, att.attnum, att.attndims,
|
||||
att.atttypmod, att.attacl, att.attnotnull, att.attoptions, att.attstattarget,
|
||||
att.attstorage, pg_catalog.pg_get_expr(def.adbin, def.adrelid) AS defval,
|
||||
pg_catalog.format_type(ty.oid,NULL) AS typname,
|
||||
|
Loading…
Reference in New Issue
Block a user