BUG #2138: Feature request: handle foreign key constraints on arrays

Поиск
Список
Период
Сортировка
От Bernhard Rosenkraenzer
Тема BUG #2138: Feature request: handle foreign key constraints on arrays
Дата
Msg-id 20060102192944.E5492F0AC6@svr2.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #2138: Feature request: handle foreign key constraints on arrays  (Jaime Casanova <systemguards@gmail.com>)
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      2138
Logged by:          Bernhard Rosenkraenzer
Email address:      bero@arklinux.org
PostgreSQL version: 8.1.1
Operating system:   Linux (Ark Linux 2005.2)
Description:        Feature request: handle foreign key constraints on
arrays
Details:

Best illustrated by an example:

A company has several offices and some employees who work in office #1 some
of the time, and in office #2 at a different time.

It would be nice to represent them in the database like this:
CREATE TABLE offices(id SERIAL8 UNIQUE PRIMARY KEY, street VARCHAR(128));
CREATE TABLE employees(id SERIAL8 UNIQUE PRIMARY KEY, name VARCHAR(128),
workplace BIGINT[] REFERENCES offices(id) ON UPDATE CASCADE);

Currently postgres refuses to do this because BIGINT[] and BIGINT are
different types, it would be nice to simply apply the constraint to all
entries in the array if a constraint for type X is applied to X[].

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

Предыдущее
От: "Jacques Gollion"
Дата:
Сообщение: BUG #2139: Problem when calling functions without any argument
Следующее
От: Jaime Casanova
Дата:
Сообщение: Re: BUG #2138: Feature request: handle foreign key constraints on arrays