odd error creating index in -current...

Поиск
Список
Период
Сортировка
От The Hermit Hacker
Тема odd error creating index in -current...
Дата
Msg-id Pine.BSF.3.96.980220005044.226q-100000@thelab.hub.org
обсуждение исходный текст
Ответы Re: [HACKERS] odd error creating index in -current...
Список pgsql-hackers
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
--
-- Host: localhost    Database: pts
----------------------------------------------------------


--
-- Table structure for table 'groups'
--
CREATE TABLE groups (
  id CHAR(10) NOT NULL,
  detail CHAR(30)
) \g

CREATE   INDEX groups_indx ON groups ( id ) \g


--
-- Dumping data for table 'groups'
--

INSERT INTO groups (id, detail) VALUES ('PTS','PTS Development')\g



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] atttypmod
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Another one I thought should work...