Re: RFC: Generating useful names for foreign keys and checks

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: RFC: Generating useful names for foreign keys and checks
Дата
Msg-id 26619.1018904157@sss.pgh.pa.us
обсуждение исходный текст
Ответ на RFC: Generating useful names for foreign keys and checks  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Ответы Re: RFC: Generating useful names for foreign keys and checks  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Список pgsql-hackers
"Christopher Kings-Lynne" <chriskl@familyhealth.com.au> writes:
> I'm thinking of doing a patch to generate foo_fkey and foo_chk names for
> fk's and checks.  I know that this will make using DROP CONSTRAINT a whole
> heck of a lot easier.  There have also been a few people who've complained
> on the list about all the <unnamed> foreign keys, etc.

> I know Tom had some fears, but I don't know if they still apply, or if
> they're any worse than the current situation?

Actually I'm in favor of it.  I have a proposal outstanding to require
constraints to have names that are unique per-table, for consistency
with triggers (already are that way) and rules (will become that way,
rather than having globally unique names as now).  AFAIR the only
significant concern was making sure that the system wouldn't generate
duplicate constraint names by default.

Actually, I was only thinking of CHECK constraints (pg_relcheck) in this
proposal.  In the long run it'd be a good idea to have a table that
explicitly lists all constraints --- check, unique, primary, foreign
key, etc --- and the index on such a table would probably enforce
name uniqueness across all types of constraints on one table.  Right now,
though, each type of constraint effectively has a separate namespace.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: [PATCHES] ANSI Compliant Inserts
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: Operators and schemas