Re: USING INDEX TABLESPACE

From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: USING INDEX TABLESPACE
Date: 2004-07-28 06:54:47
Message-ID: 41074DB7.9010006@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2004-07-28 08:29:28 Re: [HACKERS] Cannot initdb in cvs tip
Previous Message Alvaro Herrera 2004-07-28 06:31:22 Re: [subxacts] Fixing TODO items