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

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: pgsql: If an index depends on no columns of its table, give it a
Дата
Msg-id 87hcjvcldc.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на Re: pgsql: If an index depends on no columns of its table, give it a  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: mha@postgresql.org (Magnus Hagander)
Дата:
Сообщение: pgsql: Add parameter krb_realm used by GSSAPI, SSPI and Kerberos to
Следующее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Second pass at improving LIKE/regex estimation in non-C locales.