User-defined types and indices

From: Adriaan Joubert <a(dot)joubert(at)albourne(dot)com>
To: Postgres-General <pgsql-general(at)postgreSQL(dot)org>
Subject: User-defined types and indices
Date: 1999-06-09 15:47:39
Message-ID: 375E8C9B.CD54C885@albourne.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

I defined a new type, and it is essential that I am able to use it in
an index. This seems to require a bit more than just having the
comparison operators. On the create index page it seems that it is
necessary to define an *_ops class for the new type, but I have no idea
how I go about this. I have looked at the folowing system tables

pg_am
pg_amop
pg_opclass
pg_operator

but have no idea how I go about inserting the new type into these
classes.

I have operators for <, <=, =, <>, > and >= defined and they work fine,
so I think it should be possible to define a btree. I did not define
HASH or any of that stuff when defining the operators as I wasn't too
sure what that implied.

I'd really appreciate any hints on this one.

Thanks in advance,

Adriaan

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adriaan Joubert 1999-06-09 17:02:53 Re: [GENERAL] User-defined types and indices
Previous Message Herouth Maoz 1999-06-09 15:05:44 Re: [GENERAL] Howto convert arrays 2 query results