Bug #439: no inherits constraints

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема Bug #439: no inherits constraints
Дата
Msg-id 200109061429.f86ET0817122@hub.org
обсуждение исходный текст
Список pgsql-bugs
arnauld michelizza (am@adomos.com) reports a bug with a severity of 3
The lower the number the more severe it is.

Short Description
no inherits constraints

Long Description
Constraint are not herited.

Sample Code
create table foo (id int primary key);
create table bar () inherits (foo);
insert into foo values (1);
insert into bar values (1);
select * from foo;

No file was uploaded with this report

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

Предыдущее
От: Michał Pasternak
Дата:
Сообщение: Re: ILIKE + OR fault - propably a memory leak
Следующее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: Bug #440: trigger can not find a function