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 по дате отправления: