Re: [SQL] Question on Inheritance and Primary Keys.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [SQL] Question on Inheritance and Primary Keys.
Дата
Msg-id 10277.939691262@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Question on Inheritance and Primary Keys.  (Dutt Kalapatapu <dutt@eudoramail.com>)
Ответы Re: [SQL] Question on Inheritance and Primary Keys.  (Dutt Kalapatapu <dutt@eudoramail.com>)
Список pgsql-sql
Dutt Kalapatapu <dutt@eudoramail.com> writes:
> I expect from this that when we insert some thing in TableB then
> parameterone should be unique, but the database is not enforcing the rule
> and it takes duplicate values.

Constraints and indexes aren't inherited; you have to redeclare them for
each derived table.  I agree this is a bug, or at least lack of a
feature that ought to be there.  It's on the TODO list, in fact:

* Unique index on base column not honored on inserts from inherited table INSERT INTO inherit_table (unique_index_col)
VALUES(dup) should fail [inherit] 
 

I don't know when it might get fixed.  None of the currently active
developers seem to be very interested in inheritance issues, so it
could be a while before anyone decides to look at this problem.
        regards, tom lane


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

Предыдущее
От: Jason Uhlenkott
Дата:
Сообщение: security: escaping user-supplied data
Следующее
От: Dutt Kalapatapu
Дата:
Сообщение: Re: [SQL] Question on Inheritance and Primary Keys.