Re: how to index a numeric(12,2) column?

Поиск
Список
Период
Сортировка
От Forest Wilkinson
Тема Re: how to index a numeric(12,2) column?
Дата
Msg-id nn7j0tgcfkl8k1mdraoq6mhvvlhvhof14a@4ax.com
обсуждение исходный текст
Ответ на Re: how to index a numeric(12,2) column?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: how to index a numeric(12,2) column?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Mateusz Mazur
Дата:
Сообщение: Table secure problem.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: how to index a numeric(12,2) column?