Re: how to index a numeric(12,2) column? - Mailing list pgsql-sql

From Forest Wilkinson
Subject Re: how to index a numeric(12,2) column?
Date
Msg-id nn7j0tgcfkl8k1mdraoq6mhvvlhvhof14a@4ax.com
Whole thread Raw
In response to Re: how to index a numeric(12,2) column?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: how to index a numeric(12,2) column?
List pgsql-sql
>> I'd like to create an index on a column whose type is NUMERIC(12,2).
>> There appears to be no default operator class for the numeric type.
>
>Uh, what version are you using?  Works fine for me in 7.0.2.

Sorry; I hit send before adding that information.  I'm using postgres
6.5.3 on i386 Red Hat 6.1.

It allows me to create an index on a NUMERIC(12,2) field using the
int8_ops class, but I'm wondering if this might have some undesirable
hidden side effects.

CREATE TABLE foo (id INTEGER, bar NUMERIC(12,2));
CREATE INDEX foo_idx on foo (bar int8_ops);



pgsql-sql by date:

Previous
From: Mateusz Mazur
Date:
Subject: Table secure problem.
Next
From: Tom Lane
Date:
Subject: Re: how to index a numeric(12,2) column?