Re: Getting list of supported types in Postgres

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: Ivan Radovanovic <radovanovic(at)gmail(dot)com>
Cc: Michael Paquier <michael(dot)paquier(at)gmail(dot)com>, Bruce Momjian <bruce(at)momjian(dot)us>, PostgreSQL mailing lists <pgsql-general(at)postgresql(dot)org>
Subject: Re: Getting list of supported types in Postgres
Date: 2013-08-15 14:59:49
Message-ID: 520CECE5.3020301@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 08/15/2013 07:53 AM, Ivan Radovanovic wrote:

>>>
>>> Now I just need to find out which types can be indexed (and which types
>>> can be part of PK)
>>
>> http://www.postgresql.org/docs/9.2/interactive/indexes.html
>>
>
> doesn't list which types can be indexed and which can't?

Postgres can handle a variety of indexes including indexing on
expressions, which is why I pointed you to that link.

To cut to the chase, in the above link at:

http://www.postgresql.org/docs/9.2/interactive/indexes-opclass.html

there is this:

SELECT am.amname AS index_method,
opf.opfname AS opfamily_name,
amop.amopopr::regoperator AS opfamily_operator
FROM pg_am am, pg_opfamily opf, pg_amop amop
WHERE opf.opfmethod = am.oid AND
amop.amopfamily = opf.oid
ORDER BY index_method, opfamily_name, opfamily_operator;
>
>

--
Adrian Klaver
adrian(dot)klaver(at)gmail(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ivan Radovanovic 2013-08-15 15:07:05 Re: Getting list of supported types in Postgres
Previous Message Ivan Radovanovic 2013-08-15 14:53:35 Re: Getting list of supported types in Postgres