Re: [HACKERS] odd error creating index in -current...

Поиск
Список
Период
Сортировка
От Vadim B. Mikheev
Тема Re: [HACKERS] odd error creating index in -current...
Дата
Msg-id 34ED16D2.FD0D4100@sable.krasnoyarsk.su
обсуждение исходный текст
Ответ на odd error creating index in -current...  (The Hermit Hacker <scrappy@hub.org>)
Ответы Re: [HACKERS] odd error creating index in -current...
Список pgsql-hackers
The Hermit Hacker wrote:
>
> Someone want to tell me why the below CREATE INDEX fails?
>
> I've tried everything I can think of, and can't get that INDEX to be
> created :(
>
> -- $Id: groups.psql,v 1.2 1997/08/14 20:05:08 shevett Exp $
> -- postgresql 6.1
                ^^^
??? NOT NULL appeared in 6.2...

6.3:
vac=> CREATE TABLE groups (
vac->   id CHAR(10) NOT NULL,
vac->   detail CHAR(30)
vac-> ) \g
CREATE
vac=>
vac=> CREATE   INDEX groups_indx ON groups ( id ) \g
CREATE
vac=>
vac=> INSERT INTO groups (id, detail) VALUES ('PTS','PTS Development')\g
INSERT 43725 1

Vadim

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

Предыдущее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] odd error creating index in -current...
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] Another one I thought should work...