Rich LIKE inheritance

Поиск
Список
Период
Сортировка
От Reg Me Please
Тема Rich LIKE inheritance
Дата
Msg-id 200712192053.04811.regmeplease@gmail.com
обсуждение исходный текст
Ответы Re: Rich LIKE inheritance  (Richard Huxton <dev@archonet.com>)
Список pgsql-general
Hi all.

Is there a way to inherit from a table with the LIKE construct and
also get its indexes along with contraints, DEFAULTs and NOT NULLs?

An example:

CREATE TABLE story_base (
  flag BOOL NOT NULL DEFAULT TRUE,
  starting TIMESTAMP NOT NULL DEFAULT '-INFINITY',
  ending TIMESTAMP NOT NULL DEFAULT 'INFINTY'
);

CREATE INDEX i_story_base
  ON story_base( flag,starting,ending );

CREATE TABLE atable (
  sometext TEXT,
  LIKE story_base INCLUDING DEFAULTS
);

I'd like atable to also "inherit" an index like the one defined for
story_base.

Any hint?

--
Reg me, please!

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

Предыдущее
От: Louis-David Mitterrand
Дата:
Сообщение: postgres UTC different from perl?
Следующее
От: "Sean Z."
Дата:
Сообщение: Re: Deploy postgres - upgrade strategy