Re: [SQL] database design SQL prob.

From: "D'Arcy" "J(dot)M(dot)" Cain <darcy(at)druid(dot)net>
To: yura(at)vpcit(dot)ru (Don Yury)
Cc: pgsql-sql(at)postgreSQL(dot)org, pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [SQL] database design SQL prob.
Date: 1999-07-26 10:30:57
Message-ID: m118i26-0000bFC@druid.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-sql

Thus spake Don Yury
> > Not completely accurate. Create some tables using both methods then
> However, if you create table with primary key, for example
>
> create table tab(
> id int4 primary key,
> ...
> );
>
> and make dump of database, it will write in dump file
>
> create table tab(
> id int4,
> ...
> );
> create unique index "tab_pkey" on "tab" using btree ("id");

So it does. I thought that this was fixed in 6.5 but it seems not. Is
this on the TODO list?

--
D'Arcy J.M. Cain <darcy(at){druid|vex}.net> | Democracy is three wolves
http://www.druid.net/darcy/ | and a sheep voting on
+1 416 424 2871 (DoD#0082) (eNTP) | what's for dinner.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Philip Warner 1999-07-26 10:45:50 Re: [HACKERS] RE: [INTERFACES] Re: SSL patch
Previous Message D'Arcy J.M. Cain 1999-07-26 10:24:53 Re: [HACKERS] RE: [INTERFACES] Re: SSL patch

Browse pgsql-sql by date

  From Date Subject
Next Message Herouth Maoz 1999-07-26 11:12:02 Re: [SQL] NOT IN clause performing badly
Previous Message Herouth Maoz 1999-07-26 10:27:58 Re: [SQL] Expr Abbreviations/Functions?