Re: [HACKERS] odd error creating index in -current... - Mailing list pgsql-hackers

From Vadim B. Mikheev
Subject Re: [HACKERS] odd error creating index in -current...
Date
Msg-id 34ED16D2.FD0D4100@sable.krasnoyarsk.su
Whole thread Raw
In response to odd error creating index in -current...  (The Hermit Hacker <scrappy@hub.org>)
Responses Re: [HACKERS] odd error creating index in -current...  (The Hermit Hacker <scrappy@hub.org>)
List 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 by date:

Previous
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] odd error creating index in -current...
Next
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] Another one I thought should work...