6.5.2 create index bug?

From: Craig Dockter <cdockter(at)worldnet(dot)att(dot)net>
To: pgsql-bugs(at)postgresql(dot)org
Subject: 6.5.2 create index bug?
Date: 1999-09-26 21:54:46
Message-ID: 37EE9626.4D6E277D@worldnet.att.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Can anybody verify whether this is a bug in 6.5.2? I compiled 6.5.2
from sources, everything seemed OK.

I created a table:
CREATE TABLE TESTTBL (A int4);

Then tried to create a unique index:
CREATE UNIQUE INDEX TESTTBL0 ON TESTTBL (A);

The above failed, but the following succeeded:
CREATE UNIQUE INDEX TESTTBL_0 ON TESTTBL (A);

Thank you.

Browse pgsql-bugs by date

  From Date Subject
Next Message Christof Petig 1999-09-27 13:58:35 attribute of type 'serial not null'
Previous Message Vince Vielhaber 1999-09-22 11:00:37 Re: BUG in pg backend?