Re: ALTER TYPE COLLATABLE? - Mailing list pgsql-hackers

From David E. Wheeler
Subject Re: ALTER TYPE COLLATABLE?
Date
Msg-id A89F2BF2-E351-4F84-BA5C-34E8B97D172B@kineticode.com
Whole thread Raw
In response to ALTER TYPE COLLATABLE?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
On Feb 17, 2011, at 2:50 PM, Tom Lane wrote:

> I observe the following discrepancy between the 9.0 and 9.1 citext
> install scripts:
>
> ***************
> *** 52,58 ****
>      STORAGE        = extended,
>      -- make it a non-preferred member of string type category
>      CATEGORY       = 'S',
> !     PREFERRED      = false
>  );
>
>  --
> --- 49,56 ----
>      STORAGE        = extended,
>      -- make it a non-preferred member of string type category
>      CATEGORY       = 'S',
> !     PREFERRED      = false,
> !     COLLATABLE     = true
>  );

Oh, interesting. Would be nice if the docs has a link to the COLLATE clause docs.
 http://developer.postgresql.org/pgdocs/postgres/sql-createtype.html

So I can see how to use it. :-)

David



pgsql-hackers by date:

Previous
From: Simon Riggs
Date:
Subject: Re: Replication server timeout patch
Next
From: Alvaro Herrera
Date:
Subject: Re: arrays as pl/perl input arguments [PATCH]