Re: pgsql: If an index depends on no columns of its table, give it a - Mailing list pgsql-committers

From Gregory Stark
Subject Re: pgsql: If an index depends on no columns of its table, give it a
Date
Msg-id 87hcjvcldc.fsf@oxford.xeocode.com
Whole thread Raw
In response to Re: pgsql: If an index depends on no columns of its table, give it a  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-committers
"Tom Lane" <tgl@sss.pgh.pa.us> writes:

> Simon Riggs <simon@2ndquadrant.com> writes:
>
>> Sure is, and I've done it just a few days ago.
>
>> This SQL does it using standard syntax:
>
>>   create table foo (handle integer primary key check (handle = 1));
>
> That does not constrain the table to have only one row.  It constrains
> it to have only one value of the handle field (thereby making the field
> useless).

And that field is the primary key so...

I think the point is that both of these solutions are reasonable solutions to
the stated problem. If we can there's no reason to make only one of them
legal.

Actually there is one reason to prefer Simon's solution (which was the only
approach I've seen before) -- it's standard SQL and should work on any
database with check constraints and unique constraints.

--
  Gregory Stark
  EnterpriseDB          http://www.enterprisedb.com
  Ask me about EnterpriseDB's On-Demand Production Tuning

pgsql-committers by date:

Previous
From: mha@postgresql.org (Magnus Hagander)
Date:
Subject: pgsql: Add parameter krb_realm used by GSSAPI, SSPI and Kerberos to
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Second pass at improving LIKE/regex estimation in non-C locales.