Re: Did this work in earlier version of Postgres?

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: Did this work in earlier version of Postgres?
Дата
Msg-id 1143156958.79972.135.camel@home
обсуждение исходный текст
Ответ на Did this work in earlier version of Postgres?  (Tony Caduto <tony_caduto@amsoftwaredesign.com>)
Ответы Re: Did this work in earlier version of Postgres?  ("Joshua D. Drake" <jd@commandprompt.com>)
Re: Did this work in earlier version of Postgres?  ("Jim C. Nasby" <jnasby@pervasive.com>)
Список pgsql-hackers
On Thu, 2006-03-23 at 17:31 -0600, Tony Caduto wrote:
> I could have swore that this worked in earlier releases of Postgresql 
> i.e. 7.4.
> 
> CREATE TABLE public.test
> (
> junk double NOT NULL,
> CONSTRAINT junk_pkey PRIMARY KEY (junk)
> )WITHOUT OIDS;
> 
> Now it gives a error that type double does not exist.

CREATE DOMAIN double AS float8;

There, now the type exists ;)

-- 



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

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: Did this work in earlier version of Postgres?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Did this work in earlier version of Postgres?