Re: USING INDEX TABLESPACE

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Re: USING INDEX TABLESPACE
Дата
Msg-id 41074DB7.9010006@familyhealth.com.au
обсуждение исходный текст
Ответ на USING INDEX TABLESPACE  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Список pgsql-patches
> create table test (a integer primary key index tablespace loc);
>
> create table test (a integer unique index tablespace loc);
>
> create table test (a integer);
> alter table test add primary key(a) index tablespace loc;
>
> create table test (a integer);
> alter table test add unique(a) index tablespace loc;

Crap!

I left out the word 'using' on all those examples :/

create table test (a integer primary key using index tablespace loc);

create table test (a integer unique using index tablespace loc);

create table test (a integer);
alter table test add primary key(a) using index tablespace loc;

create table test (a integer);
alter table test add unique(a) using index tablespace loc;

Chris


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: [subxacts] Fixing TODO items
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] Cannot initdb in cvs tip