[GH-ISSUE #14] Cкриптование include полей в PK #13

Closed
opened 2026-05-05 03:29:49 -06:00 by gitea-mirror · 1 comment
Owner

Originally created by @sgrinko on GitHub (Mar 30, 2021).
Original GitHub issue: https://github.com/levinsv/pgadmin3/issues/14

Спасибо большое за вашу работу над проектом!

Благодарю за работу над issue #13
INCLUDE поля в индексах btree и gist теперь отображаются.

Остался неучтённым факт того, что такие поля могут быть и в первичных ключах - PK
Я кстати этим активно пользуюсь :)
Прошу добавить поддержку вывода INCLUDE полей в PK
Пример для воспроизведения:

CREATE TABLE my_table
(
    id_newswire integer NOT NULL,
    uid_news uuid NOT NULL,
    created_date timestamp with time zone NOT NULL,
    publish_date timestamp with time zone NOT NULL,
    news_text text,
    CONSTRAINT pk_my_table PRIMARY KEY (id_newswire, uid_news)
        INCLUDE(publish_date)
);
Originally created by @sgrinko on GitHub (Mar 30, 2021). Original GitHub issue: https://github.com/levinsv/pgadmin3/issues/14 Спасибо большое за вашу работу над проектом! Благодарю за работу над issue #13 INCLUDE поля в индексах btree и gist теперь отображаются. Остался неучтённым факт того, что такие поля могут быть и в первичных ключах - PK Я кстати этим активно пользуюсь :) Прошу добавить поддержку вывода INCLUDE полей в PK Пример для воспроизведения: ``` CREATE TABLE my_table ( id_newswire integer NOT NULL, uid_news uuid NOT NULL, created_date timestamp with time zone NOT NULL, publish_date timestamp with time zone NOT NULL, news_text text, CONSTRAINT pk_my_table PRIMARY KEY (id_newswire, uid_news) INCLUDE(publish_date) ); ```
Author
Owner

@sgrinko commented on GitHub (Mar 31, 2021):

Спасибо большое!

<!-- gh-comment-id:811134880 --> @sgrinko commented on GitHub (Mar 31, 2021): Спасибо большое!
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/pgadmin3#13
No description provided.